Description Usage Arguments Details Value Author(s) See Also Examples
This function combines all graphical output of multiple QA process
functions for one flowSet
in a single
hyperlinked HTML document.
1 2 |
set |
A |
qaFunctions |
A character vector of the names of QA process functions to be used |
outdir |
The directory to which the HTML report is to be saved. |
argLists |
lists of argument lists for each of the QA process
functions specified via |
grouping |
A character scalar indicating a variable in the
|
... |
Further arguments that are passed on to
|
This is a simple convenience function to produce HTML QA reports
for a single flowSet
given a list of QA
process functions. For more fine-grained control use function
writeQAReport
directly.
An entry point to the output of this function can be found at
outdir/index.html
.
The function is called for it's side effects
Florian Hahne
qaProcess.marginevents
,
writeQAReport
,
qaProcess
,
qaProcess.timeline
1 2 3 4 5 6 7 8 9 10 | ## Not run:
data(GvHD)
GvHD <- transform(GvHD, "FL1-H"=asinh(`FL1-H`), "FL2-H"=asinh(`FL2-H`))
dest <- tempdir()
qaReport(GvHD, c("qaProcess.timeline", "qaProcess.marginevents"), dest,
list(list(channel="FL1-H", cutoff=1), list(channels=c("FL1-H",
"FL2-H"), cFactor=4)))
browseURL(file.path(dest, "index.html"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.