Description Usage Arguments Value Examples
View source: R/fixSampleFrame.R
Used for updating the Sample dataframe if ConcLow or ConcHigh is manually adjusted. Adjusts ConcAve and Uncen columns.
1 | fixSampleFrame(eList)
|
eList |
named list with at least the Sample dataframes |
localSample data frame
1 2 3 4 5 6 7 8 | eList <- Choptank_eList
Sample <- eList$Sample
Sample[1,c("ConcLow","ConcHigh")] <- c(NA, 0.01) # Adjusted to left-censored
Sample[2,c("ConcLow","ConcHigh")] <- c(1.1, 1.3) # Adjusted to interval-censored
Sample[3,c("ConcLow","ConcHigh")] <- c(1.3, 1.3) # Simple adjustment
eList$Sample <- Sample
eList <- fixSampleFrame(eList)
eList$Sample[1:3,]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.