File tree Expand file tree Collapse file tree 1 file changed +0
-34
lines changed
src/frontend/specification Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Original file line number Diff line number Diff line change 1- param_labels (spec:: SemSpecification ) = spec. param_labels
2-
3- """
4- vars(semobj) -> Vector{Symbol}
5-
6- Return the vector of SEM model variables (both observed and latent)
7- in the order specified by the model.
8- """
9- function vars end
10-
11- vars (spec:: SemSpecification ) = error (" vars(spec::$(typeof (spec)) ) is not implemented" )
12-
13- """
14- observed_vars(semobj) -> Vector{Symbol}
15-
16- Return the vector of SEM model observed variable in the order specified by the
17- model, which also should match the order of variables in [`SemObserved`](@ref).
18- """
19- function observed_vars end
20-
21- observed_vars (spec:: SemSpecification ) =
22- error (" observed_vars(spec::$(typeof (spec)) ) is not implemented" )
23-
24- """
25- latent_vars(semobj) -> Vector{Symbol}
26-
27- Return the vector of SEM model latent variable in the order specified by the
28- model.
29- """
30- function latent_vars end
31-
32- latent_vars (spec:: SemSpecification ) =
33- error (" latent_vars(spec::$(typeof (spec)) ) is not implemented" )
34-
351"""
362 vars(semobj) -> Vector{Symbol}
373
You can’t perform that action at this time.
0 commit comments