growth.report {QurvE} | R Documentation |
Create a PDF and HTML report with results from a growth curve analysis workflow
Description
growth.report
requires a grofit
object and creates a report in PDF and HTML format that summarizes all results.
Usage
growth.report(
grofit,
out.dir = tempdir(),
out.nm = NULL,
ec50 = FALSE,
format = c("pdf", "html"),
export = FALSE,
parallelize = TRUE,
...
)
Arguments
grofit |
A |
out.dir |
(Character) The path or name of the folder in which the report files are created. If |
out.nm |
Character or |
ec50 |
(Logical) Display results of dose-response analysis ( |
format |
(Character) Define the file format for the report, PDF ( |
export |
(Logical) Shall all plots generated in the report be exported as individual PDF and PNG files |
parallelize |
(Logical) Create plots using all but one available processor cores ( |
... |
Further arguments passed to create a report. Currently supported:
|
Details
The template .Rmd file used within this function can be found within the QurvE package installation directory.
Value
NULL
Examples
## Not run:
# Create random growth data set
rnd.data <- rdm.data(d = 35, mu = 0.8, A = 5, label = 'Test1')
# Run growth curve analysis workflow
res <- growth.workflow(time = rnd.data$time,
data = rnd.data$data,
fit.opt = 's',
ec50 = FALSE,
export.res = FALSE,
suppress.messages = TRUE,
parallelize = FALSE)
growth.report(res, out.dir = tempdir(), parallelize = FALSE)
## End(Not run)