From f6e29ec3322773d903d4b3fb566a3c19b40f6142 Mon Sep 17 00:00:00 2001 From: Julius Pfadt Date: Fri, 18 Aug 2023 11:22:47 +0200 Subject: [PATCH] add intercepts option and fix grouping bug --- inst/qml/ConfirmatoryFactorAnalysis.qml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/inst/qml/ConfirmatoryFactorAnalysis.qml b/inst/qml/ConfirmatoryFactorAnalysis.qml index c6c9d9bf..4fc0fbb6 100644 --- a/inst/qml/ConfirmatoryFactorAnalysis.qml +++ b/inst/qml/ConfirmatoryFactorAnalysis.qml @@ -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