lh {pad} | R Documentation |
The lh
data frame has 100 rows and 8 columns.
This data-set records the concentrations of luteinising hormone in blood samples taken at 15-minute intervals from each of 8 cows.
The eight columns correspond to the 8 cows, the rows to the time-sequence of measurements on each cow.
data(lh)
This data frame contains the following columns:
Diggle, P.J. and Zeger, S.L. (1984) A non-Gaussian model for time series with pulses. JASA 354-9.
pmf <- par()$mfrow ## data(lh) par(mfrow=c(4,2), mar=c(3,3,3,1)) for(i in 1:length(lh)) plot(lh[,i], type="l", ylim=range(lh), main=paste("cow", i)) ## par(mfrow=pmf)