Rev 52721 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/datasets/man/sleep.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2010 R Core Development Team% Copyright 1999-2010 The R Foundation% Distributed under GPL 2 or later\name{sleep}\docType{data}\encoding{UTF-8}\alias{sleep}\title{Student's Sleep Data}\description{Data which show the effect of two soporific drugs (increase in hoursof sleep compared to control) on 10 patients.}\usage{sleep}\format{A data frame with 20 observations on 3 variables.\tabular{rlll}{[, 1] \tab extra \tab numeric \tab increase in hours of sleep\cr[, 2] \tab group \tab factor \tab drug given\cr[, 3] \tab ID \tab factor \tab patient ID}}\source{Cushny, A. R. and Peebles, A. R. (1905)The action of optical isomers: II hyoscines.\emph{The Journal of Physiology} \bold{32}, 501--510.Student (1908)The probable error of the mean.\emph{Biometrika}, \bold{6}, 20.}\details{The \code{group} variable name may be misleading about the data:They represent measurements on 10 persons, not in groups.%% But we keep it (as [,2]) for back compatibility.}\references{\enc{Scheffé}{Scheffe}, Henry (1959)\emph{The Analysis of Variance}.New York, NY: Wiley.}\examples{require(stats)## Student's paired t-testwith(sleep,t.test(extra[group == 1],extra[group == 2], paired = TRUE))}\keyword{datasets}