deSolve (version 1.27.1)

ccl4data: Closed Chamber Study of CCl4 Metabolism by Rats.

Description

The results of a closed chamber experiment to determine metabolic parameters for CCl4 (carbon tetrachloride) in rats.

Usage

data(ccl4data)

Arguments

Format

This data frame contains the following columns:

time

the time (in hours after starting the experiment).

initconc

initial chamber concentration (ppm).

animal

this is a repeated measures design; this variable indicates which animal the observation pertains to.

ChamberConc

chamber concentration at time, in ppm.

Examples

Run this code
# NOT RUN {
plot(ChamberConc ~ time, data = ccl4data, xlab = "Time (hours)",
  xlim = range(c(0, ccl4data$time)),
  ylab = "Chamber Concentration (ppm)", log = "y")
ccl4data.avg <- aggregate(ccl4data$ChamberConc,
                  by = ccl4data[c("time", "initconc")], mean)
points(x ~ time, data = ccl4data.avg, pch = 16)                        
# }

Run the code above in your browser using DataLab