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
# in prose ("less than 5% of the responses" / 「回答が全体の5%未満」) in
597
597
# tam/src/js/components/analysis/templates/markdown/exp_factanal{,_ja}.js. Changing the default here
598
598
# means updating that wording too. (issue #26623)
599
+
# A 6-row "Not Available" diagnostics table, matching compute_polychoric_diagnostics' shape. Used
600
+
# when the real computation fails, so a categorical analysis's diagnostics section never renders as
601
+
# an empty table under its heading. (issue #26623)
602
+
unavailable_polychoric_diagnostics<-function() {
603
+
tibble::tibble(
604
+
Diagnostic= c("Number of Categories", "Sparse Categories", "Empty Category Combinations",
605
+
"Correlation Estimation Failures", "Positive Definiteness of the Correlation Matrix",
606
+
"Smoothing Applied"),
607
+
Judgement= rep("Not Available", 6),
608
+
Description= c(
609
+
"Number of categories in the categorical variables used for the correlation.",
610
+
"Categorical variables that have a category holding a very small share of the responses. Correlations estimated from categories may become unstable when categories are sparse.",
611
+
"Variable pairs that have a category combination with no observations.",
612
+
"Variable pairs whose correlation could not be estimated.",
613
+
"Whether the estimated correlation matrix was positive definite, which factor analysis assumes, before any smoothing.",
614
+
"Whether the correlation matrix had to be smoothed to become positive definite."
0 commit comments