Description Usage Arguments Details Value Author(s) Examples
Function gnsmodel
generates the plots of linear model of
normalized and standardized intensities vs Concentration. It works on the output
of CRepsd, which is an object of class gnsdt
and utilized the combined
replicates of normalized and standardized intensities to fit linearly with
concentration data.
1 2 |
gnsdt |
output of function |
Normal |
choose between TRUE or FALSE, where TRUE is default. When TRUE, then returns the plots of lm(normalized intensity~Concentration) and when FALSE, then returns the plots of lm(standardized intensity~Concentration) |
Allows the user to get the linearly fitted plots of normalized and standardized intensities after combining replicates with respect to concentration
linearly fitted plots
Navneet Phogat, Matthias Kohl, Matthias.Kohl@stamats.de
1 2 3 4 5 6 7 8 9 | ##To read the .csv file
file1 <- system.file("exData", "Imager.csv", package = "ReadqPCR")
data <- readGNS(file = file1)
## to combine the replicates of normalized and standardized intensities
crep1 <- CRepsd(data)
## to get the linearly fitted plot of normalized intensities vs concentration
gnsmodel(crep1)
## to get the linearly fitted plots of standardized intensities vs concentration
gnsmodel(crep1, Normal = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.