backPlot {backfitRichards}R Documentation

Plot backfitted values for Richards curves

Description

Backfitted values for Richards curves are plotted.

Usage

backPlot(backFits = NULL, indep2conc = function(x) x,
         ylim = c(min(Z), max(Z)),
         Conf = backConf, main = "Relative backfitted concentration",
         sub = paste("Above / below / NA: ",
                     paste("", c(length(which(Z > ylim[2])),
                                 length(which(Z < ylim[1])),
                                 length(which(is.na(Z)))),
                           collapse = " /")),
         xlab = "Concentration [ Dilution step ]",
         ylab = "Recovery (%)", 
         doPlot = TRUE, ...)

Arguments

backFits a list of backFits, see backFit.
ylim a numeric vector with the range of the y axis.
indep2conc a function for transforming the x axis.
Conf a function for adding confidence intervals, default backConf.
main an overall title for the plot: see title.
sub a sub title for the plot: see title.
xlab a title for the x axis: see title.
ylab a title for the y axis: see title.
doPlot a boolean: if FALSE then no plot is made.
... additional arguments, to matplot and Conf, see matplot and backConf.

Details

backfitted values for Richards curves are plottet.

Value

Matrix with the plottet values.

Author(s)

Jens Henrik Badsberg


[Package backfitRichards version 0.5.0 Index]