X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flanguage%2Fstats%2Ffactor.at;h=b26af0a7c9123f6b30c40cc08bda374271605977;hb=refs%2Fbuilds%2F20130105032146%2Fpspp;hp=43825c86962fe2e169edd1ba24bca0b8dcc13285;hpb=29653adc8b41d41600f70132e02244aa57ae9dbc;p=pspp diff --git a/tests/language/stats/factor.at b/tests/language/stats/factor.at index 43825c8696..b26af0a7c9 100644 --- a/tests/language/stats/factor.at +++ b/tests/language/stats/factor.at @@ -1499,6 +1499,22 @@ question21,.732,, question22,.613,, question23,.819,,.345 question24,.695,,.386 + +Table: Rotated Factor Matrix +,Factor,, +,1,2,3 +question13,.771,, +question14,.726,, +question15,.676,, +question16,.591,, +question17,.587,.446, +question18,,.739, +question19,,.727, +question20,,.540, +question21,.402,.533,.321 +question22,,.559, +question23,.449,.377,.668 +question24,.324,.321,.652 ]) AT_CLEANUP @@ -1734,8 +1750,8 @@ socst,1.000,.900 Table: Total Variance Explained ,Initial Eigenvalues,,,Extraction Sums of Squared Loadings,,,Rotation Sums of Squared Loadings,, Component,Total,% of Variance,Cumulative %,Total,% of Variance,Cumulative %,Total,% of Variance,Cumulative % -1,3.381,67.616,67.616,3.381,67.616,67.616,,, -2,.557,11.148,78.764,.557,11.148,78.764,,, +1,3.381,67.616,67.616,3.381,67.616,67.616,2.113,42.267,42.267 +2,.557,11.148,78.764,.557,11.148,78.764,1.825,36.497,78.764 3,.407,8.136,86.900,,,,,, 4,.356,7.123,94.023,,,,,, 5,.299,5.977,100.000,,,,,, @@ -1748,6 +1764,107 @@ write,.824,-.155 math,.844,.195 science,.801,.456 socst,.783,-.536 + +Table: Rotated Component Matrix +,Component, +,1,2 +read,.650,.559 +write,.508,.667 +math,.757,.421 +science,.900,.198 +socst,.222,.922 +]) + +AT_CLEANUP + + + +AT_SETUP([FACTOR empty dataset]) +dnl Test that something sane happens when the dataset contains no complete observations + +AT_DATA([factor-empty.sps], + [data list notable list /x * y * z *. +begin data. +3.4 . 92.9 +. 32.09 34.2 +1.00 19.80 . +2.00 . 3.6 +end data. + +factor /variables = ALL. ]) -AT_CLEANUP \ No newline at end of file +AT_CHECK([pspp -O format=csv factor-empty.sps], [0], [ignore]) +AT_CLEANUP + + +dnl Fixes a crash reported at +dnl http://lists.gnu.org/archive/html/bug-gnu-pspp/2012-04/msg00001.html +AT_SETUP([FACTOR /ROTATION=NOROTATE]) +AT_DATA([factor-norotate.sps], [dnl +DATA LIST FREE / TRAIT1 TO TRAIT5 (F8.2). +BEGIN DATA +1 5 5 1 1 +8 9 7 9 8 +9 8 9 9 8 +9 9 9 9 9 +1 9 1 1 9 +9 7 7 9 9 +9 7 9 9 7 +END DATA + +FACTOR /VARIABLES=TRAIT1 TO TRAIT5 + /ROTATION=NOROTATE /* NOROTATE may have caused the problem. */ + /EXTRACTION=PC + /PRINT=DEFAULT DET UNIVARIATE ROTATION SIG CORRELATION. +]) +AT_CHECK([pspp -O format=csv factor-norotate.sps], [0], [dnl +Table: Descriptive Statistics +,Mean,Std. Deviation,Analysis N +TRAIT1,6.57,3.54,7 +TRAIT2,7.71,1.39,7 +TRAIT3,6.71,2.71,7 +TRAIT4,6.71,3.61,7 +TRAIT5,7.29,2.66,7 + +Table: Correlation Matrix +,,TRAIT1,TRAIT2,TRAIT3,TRAIT4,TRAIT5 +Correlations,TRAIT1,1.00,.30,.88,1.00,.54 +,TRAIT2,.30,1.00,-.02,.33,.84 +,TRAIT3,.88,-.02,1.00,.87,.13 +,TRAIT4,1.00,.33,.87,1.00,.54 +,TRAIT5,.54,.84,.13,.54,1.00 +Sig. (1-tailed),TRAIT1,,.26,.00,.00,.10 +,TRAIT2,.26,,.48,.24,.01 +,TRAIT3,.00,.48,,.01,.39 +,TRAIT4,.00,.24,.01,,.10 +,TRAIT5,.10,.01,.39,.10, +Determinant,.00,,,,, + +Table: Communalities +,Initial,Extraction +TRAIT1,1.00,1.00 +TRAIT2,1.00,1.00 +TRAIT3,1.00,.99 +TRAIT4,1.00,.99 +TRAIT5,1.00,.99 + +Table: Total Variance Explained +,Initial Eigenvalues,,,Extraction Sums of Squared Loadings,, +Component,Total,% of Variance,Cumulative %,Total,% of Variance,Cumulative % +1,3.26,65.26,65.26,3.26,65.26,65.26 +2,1.54,30.77,96.03,1.54,30.77,96.03 +3,.17,3.36,99.39,.17,3.36,99.39 +4,.03,.61,100.00,.03,.61,100.00 +5,.00,.00,100.00,,, + +Table: Component Matrix +,Component,,, +,1,2,3,4 +TRAIT1,.97,.23,-.08,.00 +TRAIT2,.52,-.81,.28,.00 +TRAIT3,.78,.59,.17,.00 +TRAIT4,.97,.21,-.04,.00 +TRAIT5,.70,-.67,-.23,.00 +]) +AT_CLEANUP