plot.cellGrowthFit {cellGrowth} | R Documentation |
Plot of a growth curve showing raw data and fitted curve
plot.cellGrowthFit(x, scaleX = 1, xlab = "time", ylab = "log2(OD)", lwd = 0.5, ...)
x |
growth curve object. See
|
scaleX |
scalar affecting the scaling of the x-axis. |
xlab |
plot parameter |
ylab |
plot parameter |
lwd |
plot parameter |
... |
optional plot parameters passed to the plot function |
Andreas Neudecker
# Parse file dat = readYeastGrower( system.file("extdata", "Plate1_YPFruc.txt", package="cellGrowth") ) # fit n <- names( dat$OD)[36] fit <- fitCellGrowth(x=dat$time,z=log2(dat$OD[[n]]), model = "locfit") plot(fit)