Skip to content

Commit

Permalink
add intercepts option and fix grouping bug
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuspfadt committed Nov 3, 2023
1 parent 72cfe23 commit f6e29ec
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion inst/qml/ConfirmatoryFactorAnalysis.qml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,21 @@ Form
Group
{
title: qsTr("Model Options")
CheckBox { label: qsTr("Include mean structure") ; name: "meanStructure" ; id: meanstructure }
CheckBox
{
label: qsTr("Include mean structure") ;
name: "meanStructure" ;
id: meanstructure

RadioButtonGroup
{
// ChildrenOnSameRow: true
name: "interceptsFixedToZero"
RadioButton { label: qsTr("Fix latent intercepts to zero") ; name: "latent"; checked: true}
RadioButton { label: qsTr("Fix manifest intercepts to zero"); name: "manifest"}
}

}
CheckBox { label: qsTr("Assume factors uncorrelated") ; name: "factorsUncorrelated" }
CheckBox { label: qsTr("Fix exogenous covariates") ; name: "exogenousCovariatesFixed" ; checked: true ; visible: false }
DropDown
Expand Down

0 comments on commit f6e29ec

Please sign in to comment.