1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
\name{myAutoregressiveData}
\alias{myAutoregressiveData}
\docType{data}
\title{
Example data with autoregressively related columns
}
\description{
Data set used in some of OpenMx's examples.
}
\usage{data("myAutoregressiveData")}
\format{
A data frame with 100 observations on the following variables.
\describe{
\item{\code{x1}}{x variable and time 1}
\item{\code{x2}}{x variable and time 2}
\item{\code{x3}}{x variable and time 3}
\item{\code{x4}}{x variable and time 4}
\item{\code{x5}}{x variable and time 5}
}
}
\details{
The rows are independently and identically distributed, but the columns are and auto-correlation structure.
}
\source{
Simulated.
}
\references{
The OpenMx User's guide can be found at \url{https://openmx.ssri.psu.edu/documentation/}.
}
\examples{
data(myAutoregressiveData)
round(cor(myAutoregressiveData), 2)
# note the sub-diagonal correlations (lag 1)
# x1-x2, x2-x3, x3-x4, x4-x5
# and the second sub-diagonal correlations (lag 2)
# x1-x3, x2-x4, x3-x5
}
\keyword{datasets}
|