lh {gsse401}R Documentation

GSSE 401 - Cow luteinising hormone data

Description

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.

Usage

data(lh)

Format

This data frame contains the following columns:

cow1 ... cow8
a numeric vector with hormone measurements in cow1 to cow8

Source

Diggle, P.J. and Zeger, S.L. (1984) A non-Gaussian model for time series with pulses. JASA 354-9.

Examples

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)

[Package gsse401 version 0.0-8 Index]