-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b042b1
commit 456c301
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Model construction | ||
# Model Construction | ||
|
||
There are two different ways of constructing a SEM in our package. You can use the [Outer Constructor](@ref) oder [Build by parts](@ref). | ||
The final models will be the same, the outer constructor just has some sensible defaults that make your life easier. | ||
All tutorials until now used the outer constructor `Sem(specification = ..., data = ..., ...)`, which is normally the more convenient way. | ||
However, our package is build for extensibility, so there may be cases where **user-defined** parts of a model do not work with the outer constructor. | ||
Therefore, building the model by parts is always available as a fallback. | ||
Therefore, building the model by parts is always available as a fallback. |