reportHtml {ELISAtools}R Documentation

Report ELISA data in HTML format.

Description

Writting the ELISA analysis results by batch in HTML format.

Usage

reportHtml(batches, file.name = "report", file.dir = ".", desc = "")

Arguments

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.

Value

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.

See Also

elisa_batch elisa_run elisa_plate

Examples

#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());


[Package ELISAtools version 0.1.5 Index]