antibiotic {growthrates} | R Documentation |
Plate Reader Data of Bacterial Growth
Description
Example data set from growth experiments with Pseudomonas putida on a tetracycline concentration gradient.
Format
Data frame with the following columns:
- time
time in hours.
- variable
sample code.
- value
bacteria concentration measured as optical density.
- conc
concentration of the antibiotics (Tetracycline).
- repl
Replicate.
Details
The sample data set shows four out of six replicates of the original experiment.
Source
Claudia Seiler, TU Dresden, Institute of Hydrobiology.
Examples
## plot data and determine growth rates
data(antibiotic)
dat <- subset(antibiotic, conc==0.078 & repl=="R4")
parms <- c(y0=0.01, mumax=0.2, K=0.5)
fit <- fit_growthmodel(grow_logistic, parms, dat$time, dat$value)
plot(fit); plot(fit, log="y")
[Package growthrates version 0.8.4 Index]