plot.lin.pom {calib} | R Documentation |
Provides plotting method for the various lin fits.
plot.lin.pom(lin.out, conf = 0.9, m = lin.out@m, main = "", xlab = "", ylab = "", xlim = c(0, max(lin.out@x)), ylim = c(0, 1.1 * max(lin.out@y, na.rm = T)), print.txt = T, start.txt, increm = 0.03, digits = c(2, 2, 4, 2, 2), txt.size = 0.8, lof.print = F, logplot = F, pred.lim = F, sub = "", ...)
lin.out |
Object of class calib.fit |
conf |
Confidence limits to plot |
m |
Number of replicates |
main |
Title of graph |
xlab |
x label |
ylab |
y label |
xlim |
x limit |
ylim |
y limit |
print.txt |
... |
start.txt |
... |
increm |
Helps determine the position of the text |
digits |
Graphing parameter determining text size on the plot |
txt.size |
Controls text size proportion (similar to cex par argument) |
lof.print |
Should the lack of fit statistics be printed |
logplot |
Determines if x variable to printed on the log scale |
pred.lim |
Should prediction limits for confidence limits be plotted. Default is FALSE. |
sub |
Subtitle |
... |
... |
Note that this function is not directly accessible by the user but is accessed through plot. See example below.
Perry Haaland, Daniel Samarov, Elaine McVey
data(HPLC) attach(HPLC) model <- calib.fit(Concentration, Response, type = "lin.pom") plot(model)