
Last chance! 50% off unlimited learning
Sale ends in
Find factor intercept from regression coefficient matrix and factor total means for latent variable models. In the path analysis model, this function will find indicator intercept from regression coefficient and indicator total means.
findFactorIntercept(beta, factorMean = NULL, gamma = NULL, covmean = NULL)
A vector of factor (indicator) intercepts
Regression coefficient matrix among factors
A vector of total (model-implied) factor (indicator) means. The default is that all total factor means are 0.
Regression coefficient matrix from covariates (column) to factors (rows)
A vector of covariate means.
Sunthud Pornprasertmanit (psunthud@gmail.com)
findIndIntercept
to find indicator (measurement) intercepts
findIndMean
to find indicator (measurement) total means
findIndResidualVar
to find indicator (measurement) residual variances
findIndTotalVar
to find indicator (measurement) total variances
findFactorMean
to find factor means
findFactorResidualVar
to find factor residual variances
findFactorTotalVar
to find factor total variances
findFactorTotalCov
to find factor covariances
path <- matrix(0, 9, 9)
path[4, 1] <- path[7, 4] <- 0.6
path[5, 2] <- path[8, 5] <- 0.6
path[6, 3] <- path[9, 6] <- 0.6
path[5, 1] <- path[8, 4] <- 0.4
path[6, 2] <- path[9, 5] <- 0.4
factorMean <- c(5, 2, 3, 0, 0, 0, 0, 0, 0)
findFactorIntercept(path, factorMean)
Run the code above in your browser using DataLab