R/getModelType.R

Defines functions getModelType

getModelType <- function(model)
{
  if (inherits(model,"MxModel") || inherits(model,"MxRAMModel")) {
    return("OpenMx")
    control$sem.prog = "OpenMx"
  } else if (inherits(model,"lavaan")){
    return("lavaan")
  } else if ((inherits(model,"ctsemFit")) || (inherits(model,"ctsemInit"))) {
    return("ctsem")
  } else {
    ui_stop("Unknown model type selected. Use OpenMx or lavaanified lavaan models!");
  }
}

Try the semtree package in your browser

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

semtree documentation built on Nov. 26, 2023, 5:07 p.m.