
Last chance! 50% off unlimited learning
Sale ends in
beaver1
beaver2
beaver1
data frame has 114 rows and 4 columns on body
temperature measurements at 10 minute intervals. The beaver2
data frame has 100 rows and 4 columns on body
temperature measurements at 10 minute intervals. The variables are as follows:
beaver1
) and November 3--4
(beaver2
).0330
for
3:30amrequire(graphics)
(yl <- range(beaver1$temp, beaver2$temp))
beaver.plot <- function(bdat, ...) {
nam <- deparse(substitute(bdat))
with(bdat, {
# Hours since start of day:
hours <- time %/% 100 + 24*(day - day[1]) + (time %% 100)/60
plot (hours, temp, type = "l", ...,
main = paste(nam, "body temperature"))
abline(h = 37.5, col = "gray", lty = 2)
is.act <- activ == 1
points(hours[is.act], temp[is.act], col = 2, cex = .8)
})
}
op <- par(mfrow = c(2, 1), mar = c(3, 3, 4, 2), mgp = 0.9 * 2:0)
beaver.plot(beaver1, ylim = yl)
beaver.plot(beaver2, ylim = yl)
par(op)
Run the code above in your browser using DataLab