plotNlsData {mixlow} | R Documentation |
Plots results from the doNls
function
plotNlsData(nlsData, mixlowData, trays=getTrays(mixlowData), ask, showBlanks=TRUE)
nlsData |
A list obtained from the doNls function |
mixlowData |
A list obtained from the prepareData function |
trays |
A vector of strings indicating the trays for which data should be plotted. |
ask |
Logical. If TRUE (and the R session is interactive)
the user is asked for input, before a new figure is drawn. |
showBlanks |
Logical. If TRUE , data from the optical control
wells (“blanks”) in a tray are included in the graph.
Default is TRUE |
Plots concentration-response curves for each tray and each drug. See
plotMixlowData
for more information about the plots of
concentration-response data and optical control data.
A list of length equal to the number of trays with components:
graphDataTray |
A list of graph data per tray with components:
|
graphDataDrug |
A list of graph data per drug with components:
|
John Boik jcboik@stanford.edu
# mixlowData data object is obtained using the prepareData function data(mixlowData) trays <- getTrays(mixlowData) # nlsData data object is obtained using the doNls function data(nlsData) saved_nls_GraphingData <- plotNlsData(nlsData=nlsData, mixlowData=mixlowData, trays= trays[1:9], ask=FALSE, showBlanks= TRUE)