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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data.R
\docType{data}
\name{dat3way}
\alias{dat3way}
\title{Simulated Dataset to Demonstrate Three-way Latent Interaction}
\format{
A \code{data.frame} with 500 observations of 12 variables.
\describe{
\item{x1}{The first indicator of the first independent factor}
\item{x2}{The second indicator of the first independent factor}
\item{x3}{The third indicator of the first independent factor}
\item{x4}{The first indicator of the second independent factor}
\item{x5}{The second indicator of the second independent factor}
\item{x6}{The third indicator of the second independent factor}
\item{x7}{The first indicator of the third independent factor}
\item{x8}{The second indicator of the third independent factor}
\item{x9}{The third indicator of the third independent factor}
\item{x10}{The first indicator of the dependent factor}
\item{x11}{The second indicator of the dependent factor}
\item{x12}{The third indicator of the dependent factor}
}
}
\source{
Data were generated by the \code{\link[MASS:mvrnorm]{MASS::mvrnorm()}} function in
the \code{MASS} package.
}
\usage{
dat3way
}
\description{
A simulated data set with 3 independent factors and 1 dependent factor where
each factor has three indicators
}
\examples{
head(dat3way)
}
\keyword{datasets}
|