podcallMultiplot {PoDCall} | R Documentation |
A function that returns faceted scatterplots for multiple wells suitable for comparison of wells.
podcallMultiplot(plateData, thresholds, channel)
plateData |
A list containing data frames with amplitude values from selected wells that is to be compared. One data frame per well. |
thresholds |
A vector containing the thresholds for the selected wells |
channel |
What channel to plot: 1 or 2 |
Faceted scatterplot with line indicating threshold. One facet per selected well.
## Set path to data path <- system.file("extdata", "Amplitudes/", package="PoDCall") ## Read in data files data <- importAmplitudeData(path) data("thrTable") ## Create plot using threshold from thrTable, see ?thrTable plot <- podcallMultiplot(plateData=data, thresholds=thrTable[names(data), ], channel=1)