Define covariances between residual terms in a lvm-object.
## S3 replacement method for class 'lvm'covariance(object, var1=NULL, var2=NULL, constrain=FALSE, pairwise=FALSE,...)<- value
Arguments
object: lvm-object
...: Additional arguments to be passed to the low level functions
var1: Vector of variables names (or formula)
var2: Vector of variables names (or formula) defining pairwise covariance between var1 and var2)
constrain: Define non-linear parameter constraints to ensure positive definite structure
pairwise: If TRUE and var2 is omitted then pairwise correlation is added between all variables in var1
value: List of parameter values or (if var1 is unspecified)
Returns
A lvm-object
Details
The covariance function is used to specify correlation structure between residual terms of a latent variable model, using a formula syntax.
For instance, a multivariate model with three response variables,
Y1=μ1+ϵ1Y2=μ2+ϵ2Y3=μ3+ϵ3
can be specified as
m <- lvm(~y1+y2+y3)
Pr. default the two variables are assumed to be independent. To add a covariance parameter r=cov(ϵ1,ϵ2), we execute the following code
covariance(m) <- y1 ~ f(y2,r)
The special function f and its second argument could be omitted thus assigning an unique parameter the covariance between y1 and y2.
Similarily the marginal variance of the two response variables can be fixed to be identical (var(Yi)=v) via
covariance(m) <- c(y1,y2,y3) ~ f(v)
To specify a completely unstructured covariance structure, we can call
covariance(m) <- ~y1+y2+y3
All the parameter values of the linear constraints can be given as the right handside expression of the assigment function covariance<- if the first (and possibly second) argument is defined as well. E.g:
covariance(m,y1~y1+y2) <- list("a1","b1")
covariance(m,~y2+y3) <- list("a2",2)
Defines
var(ϵ1)=a1var(ϵ2)=a2var(ϵ3)=2cov(ϵ1,ϵ2)=b1
Parameter constraints can be cleared by fixing the relevant parameters to NA (see also the regression method).
The function covariance (called without additional arguments) can be used to inspect the covariance constraints of a lvm-object.
Examples
m <- lvm()### Define covariance between residuals terms of y1 and y2covariance(m)<- y1~y2
covariance(m)<- c(y1,y2)~f(v)## Same marginal variancecovariance(m)## Examine covariance structure