The R Project SVN R

Rev

Rev 74265 | Rev 85908 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/datasets/man/ToothGrowth.Rd
68948 ripley 2
% Part of the R package, https://www.R-project.org
74265 hornik 3
% Copyright 1995-2018 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
5473 hornik 6
\name{ToothGrowth}
21724 hornik 7
\docType{data}
56186 murdoch 8
\alias{ToothGrowth}
5473 hornik 9
\title{The Effect of Vitamin C on Tooth Growth in Guinea Pigs}
21724 hornik 10
\description{
68992 ripley 11
  The response is the length of odontoblasts (cells responsible for
12
  tooth growth) in 60 guinea pigs.  Each animal received one of three
68994 ripley 13
  dose levels of vitamin C (0.5, 1, and 2 mg/day) by one of two delivery
74363 maechler 14
  methods, orange juice or ascorbic acid (a form of vitamin C and coded
68994 ripley 15
  as \code{VC}).
21724 hornik 16
}
30449 ripley 17
\usage{ToothGrowth}
21724 hornik 18
\format{
19
  A data frame with 60 observations on 3 variables.
7125 hornik 20
  \tabular{rlll}{
21
    [,1]  \tab len   \tab numeric  \tab Tooth length\cr
22
    [,2]  \tab supp  \tab factor   \tab Supplement type (VC or OJ).\cr
68992 ripley 23
    [,3]  \tab dose  \tab numeric  \tab Dose in milligrams/day
7125 hornik 24
  }
5473 hornik 25
}
26
\source{
74265 hornik 27
  C. I. Bliss (1952).
21724 hornik 28
  \emph{The Statistics of Bioassay}.
29
  Academic Press.
5473 hornik 30
}
31
\references{
74265 hornik 32
  McNeil, D. R. (1977).
21724 hornik 33
  \emph{Interactive Data Analysis}.
7324 ripley 34
  New York: Wiley.
68992 ripley 35
 
74265 hornik 36
  Crampton, E. W. (1947).
68992 ripley 37
  The growth of the odontoblast of the incisor teeth as a criterion of
74265 hornik 38
  vitamin C intake of the guinea pig.
39
  \emph{The Journal of Nutrition}, \bold{33}(5), 491--504.
40
  \doi{10.1093/jn/33.5.491}.
5473 hornik 41
}
6994 pd 42
\examples{
41502 ripley 43
require(graphics)
6994 pd 44
coplot(len ~ dose | supp, data = ToothGrowth, panel = panel.smooth,
21071 maechler 45
       xlab = "ToothGrowth data: length vs dose, given type of supplement")
6994 pd 46
}
5473 hornik 47
\keyword{datasets}