plot.cellGrowthFit: Generic plot function for datatype cellGrowthFit

Description Usage Arguments Author(s) Examples

Description

Plot of a growth curve showing raw data and fitted curve

Usage

1
2
  plot.cellGrowthFit(x, scaleX = 1, xlab = "time",
    ylab = "log2(OD)", lwd = 0.5, ...)

Arguments

x

growth curve object. See fitCellGrowth

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

Author(s)

Andreas Neudecker

Examples

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)

cellGrowth documentation built on Oct. 31, 2019, 8:38 a.m.