Description Usage Arguments Value Author(s) Examples
This function will takes a list of ranges removes case wells and extract replicate values separately
1 2 | extractReplicateValues(rawDataUnProcessed, wellRanges, wellplace = 3,
simple = FALSE, excelFormate = FALSE)
|
rawDataUnProcessed |
A data matrix |
wellRanges |
Ranges of wells |
wellplace |
Place of treated (case) well range |
simple |
TRUE if survival values are already calculated otherwise it is FALSE |
excelFormate |
True if ranges are in excel formate |
Replicate values
Muhammad kashif
1 2 3 4 5 6 7 | dataFile <- system.file("extdata", "testData.csv", package="COMBIA")
rData <- read.csv( dataFile, skip=0, sep=",", nrows=41,
fill=TRUE, header=FALSE,
blank.lines.skip = FALSE)[,1:13]
wellR= c( "l3:l10","m3:m10","b3:k10", "l13:l20","m13:m20","b13:k20",
"l23:l30","m23:m30","b23:k30", "l33:l40","m33:m40","b33:k40")
rslt <- extractReplicateValues(rData, wellR, excelFormate=TRUE )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.