R/create_labels_pi_ca.R

Defines functions createLabelZeta createLabelMean createLabelGamma createLabelLambdaSquared createLabelLambda createLabelVar createLabelCov

createLabelCov <- function(x, y)
  paste("Cov", x, y, sep = "_")


createLabelVar <- function(x)
  paste("Var", x, sep = "_")


createLabelLambda <- function(ind, latent)
  paste("lambda", ind, latent, sep = "_")


createLabelLambdaSquared <- function(ind, latent)
  paste0(createLabelLambda(ind, latent), " ^ 2")


createLabelGamma <- function(x, y)
  paste("Gamma", x, y, sep = "_")


createLabelMean <- function(x)
  paste("Mean", x, sep = "_")


createLabelZeta <- function(x)
  paste("Zeta", x, sep = "_")

Try the modsem package in your browser

Any scripts or data that you put into this service are public.

modsem documentation built on April 3, 2025, 7:51 p.m.