*I am building a package a package and one of its functions need parallel
procesing.*
*Then I created the function because my final use are not technical:*
create.cluster <-function()
{
# Calculate the number of cores
no_cores <-parallel::detectCores() - 1
# Initiate cluster
cl <- parallel
Assume an R package that generates a figure ('output.pdf') as the result
of executing the example code specified in one of the manual files (i.e.
an .Rd file). The example code specifies the figure to be saved to the
root directory of the package (i.e., where files DESCRIPTION and
NAMESPACE are
https://stat.ethz.ch/R-manual/R-devel/library/base/html/tempfile.html
?tempdir
On July 4, 2019 3:25:25 PM PDT, Michael Gruenstaeudl
wrote:
>Assume an R package that generates a figure ('output.pdf') as the
>result
>of executing the example code specified in one of the manual files
>(i.e.
>an
Not seeing in "Writing R Extensions" a way to annotate a block quote in an Rd
file. Any suggestions?
--
Sent from my phone. Please excuse my brevity.
__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel
On 04/07/2019 7:43 p.m., Jeff Newmiller wrote:
Not seeing in "Writing R Extensions" a way to annotate a block quote in an Rd
file. Any suggestions?
I don't think there is a built-in one. If you are determined to have
one, you could define your own user-defined macro to do it. It'll be
ugly
Ehh... not that much. Will make do with a couple of quote marks. Thanks for the
confirmation.
On July 4, 2019 5:48:56 PM PDT, Duncan Murdoch wrote:
>On 04/07/2019 7:43 p.m., Jeff Newmiller wrote:
>> Not seeing in "Writing R Extensions" a way to annotate a block quote
>in an Rd file. Any suggesti