From f3c61f9f762b51111208270753d8366318c9e224 Mon Sep 17 00:00:00 2001 From: Patrick Coulombe Date: Tue, 19 Dec 2023 09:58:04 -0500 Subject: [PATCH 1/2] Clarify labels to match those of PC analysis --- inst/qml/ExploratoryFactorAnalysis.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inst/qml/ExploratoryFactorAnalysis.qml b/inst/qml/ExploratoryFactorAnalysis.qml index 5a7e374e..25762c33 100644 --- a/inst/qml/ExploratoryFactorAnalysis.qml +++ b/inst/qml/ExploratoryFactorAnalysis.qml @@ -56,13 +56,13 @@ Form RadioButton { value: "principalComponentBased" - label: qsTr("Based on PC") + label: qsTr("Based on principal components") checked: true } RadioButton { value: "factorBased" - label: qsTr("Based on FA") + label: qsTr("Based on factors") } } IntegerField From e5d7709ea26facbc42be21dd25b7416d92546073 Mon Sep 17 00:00:00 2001 From: Patrick Coulombe Date: Tue, 19 Dec 2023 09:59:41 -0500 Subject: [PATCH 2/2] Change default extraction method for factor analysis to be based on factors (instead of principal components) --- inst/qml/ExploratoryFactorAnalysis.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/qml/ExploratoryFactorAnalysis.qml b/inst/qml/ExploratoryFactorAnalysis.qml index 25762c33..f082e47e 100644 --- a/inst/qml/ExploratoryFactorAnalysis.qml +++ b/inst/qml/ExploratoryFactorAnalysis.qml @@ -57,12 +57,12 @@ Form { value: "principalComponentBased" label: qsTr("Based on principal components") - checked: true } RadioButton { value: "factorBased" label: qsTr("Based on factors") + checked: true } } IntegerField