From 94615bd7698a098fc694da28e50a3f6e1dc12e97 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 8 Apr 2012 17:59:10 +0200 Subject: [PATCH] Remove KMO and Bartlett statistics from bug check test. Commit 6b351b28f47c1dfb1ce697eb50cd218b50122fd0 added a test for a bug fix. This test however included a display of a the KMO and Bartlett test statistics, which in this case are unstable since the determinant of the correlation matrix is close to zero. These statistic are not relevant to the bug being tested. So this change removes them. --- tests/language/stats/factor.at | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/tests/language/stats/factor.at b/tests/language/stats/factor.at index fb2bb22519..b26af0a7c9 100644 --- a/tests/language/stats/factor.at +++ b/tests/language/stats/factor.at @@ -1814,9 +1814,9 @@ BEGIN DATA END DATA FACTOR /VARIABLES=TRAIT1 TO TRAIT5 -    /ROTATION=NOROTATE    /* NOROTATE may have caused the problem. */ -    /EXTRACTION=PC -    /PRINT=ALL + /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 @@ -1827,12 +1827,6 @@ TRAIT3,6.71,2.71,7 TRAIT4,6.71,3.61,7 TRAIT5,7.29,2.66,7 -Table: KMO and Bartlett's Test -Kaiser-Meyer-Olkin Measure of Sampling Adequacy,,1.00 -Bartlett's Test of Sphericity,Approx. Chi-Square,NaN -,df,10 -,Sig.,NaN - Table: Correlation Matrix ,,TRAIT1,TRAIT2,TRAIT3,TRAIT4,TRAIT5 Correlations,TRAIT1,1.00,.30,.88,1.00,.54 -- 2.30.2