Description Usage Arguments Value See Also Examples
View source: R/BatchCorrection.R
Writting the ELISA analysis results by batch in HTML format.
1 | reportHtml(batches, file.name = "report", file.dir = ".", desc = "")
|
batches |
list of elisa batch data objects. The data can be raw or after analyzed and batch-corrected. |
file.name |
character string denoting the report file. The file will be written in HTML format. |
file.dir |
character string denoting the directory to save the report. |
desc |
character string describing the project and experiment. Will be written into the report. |
the function returns NULL. But it will save the html report to the disk. Therefore, it is IMPORTANT to specify a directory you have write permission to run this function.
elisa_batch
elisa_run
elisa_plate
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #R code to run 5-parameter logistic regression on ELISA data
#load the library
library(ELISAtools)
##
#get file folder
dir_file<-system.file("extdata", package="ELISAtools")
batches<-loadData(file.path(dir_file,"design.txt"))
#----IMPORTANT-----
#please make sure you have the write permission to save the html report
reportHtml(batches,file.dir=tempdir());
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.