Description Usage Arguments Author(s) Examples
Plot of a growth curve showing raw data and fitted curve
1 2 | 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
1 2 3 4 5 6 7 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.