Output multipage pdf in parallelized manner
IQRoutputPDFParallel.Rd
Output multipage pdf in parallelized manner
IQRoutputPDFParallel(..., ncores = 8)
Arguments
- ...
Arguments going to
IQRoutputFigure()
. Passing with name only, except for x!- ncores
Number of cores for outputting with mclapply
Value
Nothing, called for side-effect
See also
Other Output:
IQRinitCompliance()
,
IQRoutputCSV()
,
IQRoutputDEFINE()
,
IQRoutputFigure()
,
IQRoutputFile()
,
IQRoutputPDF()
,
IQRoutputPDFend()
,
IQRoutputPDFstart()
,
IQRoutputPNG()
,
IQRoutputRDS()
,
IQRoutputTable()
,
IQRoutputValueTable()
,
IQRoutputXPT()
,
createSubmissionPack()
,
getModelSpecification()
,
getProgramSpecification()
,
import_IQRdataOriginal()
,
is_enabled_complianceMode()
,
is_enabled_rdsMode()
,
packageR_IQRtools()
,
print.IQRoutputTable()
,
read_IQRoutputTable()
,
text_IQRoutputTable()
Examples
if (FALSE) { # \dontrun{
library(IQRtools)
pl1 <- IQRggplot(mtcars, aes(wt, mpg)) + geom_line()
x <- lapply(1:64, function(x) pl1)
filename <- tempfile(fileext = ".pdf")
system.time(IQRoutputPDFParallel(x = x, filename = filename, ncores = 8))
system.time(IQRoutputFigure(x = x, filename = filename))
} # }