You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/tutorials/collection/multigroup.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ We now fit the model and inspect the parameter estimates:
83
83
```@example mg; ansicolor = true
84
84
solution = sem_fit(model_ml_multigroup)
85
85
update_estimate!(partable, solution)
86
-
sem_summary(partable)
86
+
details(partable)
87
87
```
88
88
89
89
Other things you can query about your fitted model (fit measures, standard errors, etc.) are described in the section [Model inspection](@ref) and work the same way for multigroup models.
Copy file name to clipboardExpand all lines: docs/src/tutorials/constraints/constraints.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ model_fit = sem_fit(model)
52
52
53
53
update_estimate!(partable, model_fit)
54
54
55
-
sem_summary(partable)
55
+
details(partable)
56
56
```
57
57
58
58
### Define the constraints
@@ -165,7 +165,7 @@ update_partable!(
165
165
solution(model_fit_constrained),
166
166
)
167
167
168
-
sem_summary(partable)
168
+
details(partable)
169
169
```
170
170
171
171
As we can see, the constrained solution is very close to the original solution (compare the columns estimate and estimate_constr), with the difference that the constrained parameters fulfill their constraints.
We can also update the `ParameterTable` object with other information via [`update_partable!`](@ref). For example, if we want to compare hessian-based and bootstrap-based standard errors, we may write
0 commit comments