Learn R Programming

ctsemOMX (version 1.0.6)

ctModelFromFit: Extract a ctsem model structure with parameter values from a ctsem fit object.

Description

Extract a ctsem model structure with parameter values from a ctsem fit object.

Usage

ctModelFromFit(fit)

Value

object of class 'ctsemInit' (as generated by ctModel), which can be used with ctFit and functions.

Arguments

fit

object output by ctFit

Examples

Run this code
data(AnomAuth) 
AnomAuthmodel <- ctModel(LAMBDA = matrix(c(1, 0, 0, 1), nrow = 2, ncol = 2), 
  Tpoints = 5, n.latent = 2, n.manifest = 2, MANIFESTVAR=diag(0, 2)) 
AnomAuthfit <- ctFit(AnomAuth, AnomAuthmodel)

fitmodel <- ctModelFromFit(AnomAuthfit)

Run the code above in your browser using DataLab