StructuralEquationModels.jl icon indicating copy to clipboard operation
StructuralEquationModels.jl copied to clipboard

A fast and flexible Structural Equation Modelling Framework

Results 83 StructuralEquationModels.jl issues
Sort by recently updated
recently updated
newest added

# LGCM ```julia using StenoGraphs, StructuralEquationModels ts = 1:100 obs = Symbol.("vf_t", lpad.(ts, 3, "0")) @declare_nodes i s # same as i, s = Node.((:i, :s)) m = Node(Symbol("1")) graph...

Is there a way to specify a model without data? For example, if I specify a population model in a simulation, I never want to fit this but directly simulate...

I encountered a problem with the model-implied covariance matrix of a SEM in SEM.jl. The model is a standard linear latent growth curve model fitted on data perfectly simulated from...

We should have a way to display standardized estimates (based on a parameter table?)

Alexey is not listed as co-author in the metadata of the preprint on Psyarxiv.

We need CFI as a standard fit measure because RMSEA and CFI together are the de facto reporting standard. However, it needs the fit of a null model, which usually...

enhancement

Does the package support definition variables as in OpenMx? If not, I strongly vote for including this in both the package and Stenograph. If this is not yet, implemented, it...

Currently, (in)equality constraints require some manual labor and are relatively error-prone. This is from the documentation: ```{julia} parind[:y3y7] # 29 parind[:y8y4] # 30 # θ[29] + θ[30] - 1 =...

enhancement

Currently, if I do ``` model = Sem( specification = partable, data = data, meanstructure = false ) ``` and the partable has a mean structure specified, this is just...