Rev 3365 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{sleepstudy}\alias{sleepstudy}\docType{data}\title{Reaction times in a sleep deprivation study}\description{The average reaction time per day for subjects in a sleep deprivationstudy. On day 0 the subjects had their normal amount of sleep.Starting that night they were restricted to 3 hours of sleep pernight. The observations represent the average reaction time on aseries of tests given each day to each subject.}\usage{data(sleepstudy)}\format{A data frame with 180 observations on the following 3 variables.\describe{\item{\code{Reaction}}{Average reaction time (ms)}\item{\code{Days}}{Number of days of sleep deprivation}\item{\code{Subject}}{Subject number on which the observation was made.}}}\details{These data are from the study described in Belenky et al. (2003), forthe sleep-deprived group and for the first 10 days of the study, up tothe recovery period.}\references{Gregory Belenky, Nancy J. Wesensten, David R. Thorne, MariaL. Thomas, Helen C. Sing, Daniel P. Redmond, Michael B. Russo andThomas J. Balkin (2003)Patterns of performance degradation and restoration during sleeprestriction and subsequent recovery: a sleep dose-response study.\emph{Journal of Sleep Research} \bold{12}, 1--12.}\examples{data(sleepstudy)str(sleepstudy)if (require("lattice", quietly = TRUE, character.only = TRUE))xyplot(Reaction ~ Days | Subject, sleepstudy, type = c("g","p","r"),index = function(x,y) coef(lm(y ~ x))[1],xlab = "Days of sleep deprivation",ylab = "Average reaction time (ms)", aspect = "xy")(fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy))(fm2 <- lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy))}\keyword{datasets}