X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=tests%2Fcommand%2Fcorrelation.sh;h=06c1d24519c5bbbc2028dab5f98f97555bfef696;hb=f51ecb48027e6b1eb46840ae25888a25b429f012;hp=bdc749399dd1426a4e5a3f5dd13675ed788bdde9;hpb=400eaca1f378c40dced767bdc14a395dff220b8d;p=pspp diff --git a/tests/command/correlation.sh b/tests/command/correlation.sh index bdc749399d..06c1d24519 100755 --- a/tests/command/correlation.sh +++ b/tests/command/correlation.sh @@ -57,7 +57,7 @@ mkdir -p $TEMPDIR cd $TEMPDIR -activity="create program" +activity="create program 1" cat << EOF > $TESTFILE set format = F11.3. data list notable list /foo * bar * wiz * bang *. @@ -93,61 +93,114 @@ EOF if [ $? -ne 0 ] ; then no_result ; fi -activity="run program" -$SUPERVISOR $PSPP --testing-mode -o raw-ascii $TESTFILE +activity="run program 1" +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi -activity="compare results" -perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list -cp $TEMPDIR/pspp.list /tmp -diff -b $TEMPDIR/pspp.list - << EOF -1.1 CORRELATIONS. Correlations -#========================#=====#=====#=====#=====# -# #foo |bar |wiz |bang # -#----+-------------------#-----+-----+-----+-----# -#foo |Pearson Correlation#1.000| .802| .890|-.308# -# |Sig. (2-tailed) # | .055| .017| .553# -#----+-------------------#-----+-----+-----+-----# -#bar |Pearson Correlation# .802|1.000| .519| .118# -# |Sig. (2-tailed) # .055| | .291| .824# -#----+-------------------#-----+-----+-----+-----# -#wiz |Pearson Correlation# .890| .519|1.000|-.344# -# |Sig. (2-tailed) # .017| .291| | .505# -#----+-------------------#-----+-----+-----+-----# -#bang|Pearson Correlation#-.308| .118|-.344|1.000# -# |Sig. (2-tailed) # .553| .824| .505| # -#====#===================#=====#=====#=====#=====# -2.1 CORRELATIONS. Correlations -#=======================#=====#=====# -# #bar |wiz # -#---+-------------------#-----+-----# -#bar|Pearson Correlation#1.000| .497# -# |Sig. (2-tailed) # | .210# -#---+-------------------#-----+-----# -#wiz|Pearson Correlation# .497|1.000# -# |Sig. (2-tailed) # .210| # -#===#===================#=====#=====# -3.1 CORRELATIONS. Correlations -#========================#=====#=====#=====#=====# -# #foo |bar |wiz |bang # -#----+-------------------#-----+-----+-----+-----# -#foo |Pearson Correlation#1.000| .805| .883|-.308# -# |Sig. (2-tailed) # | .029| .008| .553# -# |N # 7| 7| 7| 6# -#----+-------------------#-----+-----+-----+-----# -#bar |Pearson Correlation# .805|1.000| .497| .164# -# |Sig. (2-tailed) # .029| | .210| .725# -# |N # 7| 8| 8| 7# -#----+-------------------#-----+-----+-----+-----# -#wiz |Pearson Correlation# .883| .497|1.000|-.337# -# |Sig. (2-tailed) # .008| .210| | .460# -# |N # 7| 8| 8| 7# -#----+-------------------#-----+-----+-----+-----# -#bang|Pearson Correlation#-.308| .164|-.337|1.000# -# |Sig. (2-tailed) # .553| .725| .460| # -# |N # 6| 7| 7| 7# -#====#===================#=====#=====#=====#=====# +activity="compare results 1" +diff -c $TEMPDIR/pspp.csv - << EOF +Table: Correlations +,,foo,bar,wiz,bang +foo,Pearson Correlation,1.000,.802,.890,-.308 +,Sig. (2-tailed),,.055,.017,.553 +bar,Pearson Correlation,.802,1.000,.519,.118 +,Sig. (2-tailed),.055,,.291,.824 +wiz,Pearson Correlation,.890,.519,1.000,-.344 +,Sig. (2-tailed),.017,.291,,.505 +bang,Pearson Correlation,-.308,.118,-.344,1.000 +,Sig. (2-tailed),.553,.824,.505, + +Table: Correlations +,,bar,wiz +bar,Pearson Correlation,1.000,.497 +,Sig. (2-tailed),,.210 +wiz,Pearson Correlation,.497,1.000 +,Sig. (2-tailed),.210, + +Table: Correlations +,,foo,bar,wiz,bang +foo,Pearson Correlation,1.000,.805,.883,-.308 +,Sig. (2-tailed),,.029,.008,.553 +,N,7,7,7,6 +bar,Pearson Correlation,.805,1.000,.497,.164 +,Sig. (2-tailed),.029,,.210,.725 +,N,7,8,8,7 +wiz,Pearson Correlation,.883,.497,1.000,-.337 +,Sig. (2-tailed),.008,.210,,.460 +,N,7,8,8,7 +bang,Pearson Correlation,-.308,.164,-.337,1.000 +,Sig. (2-tailed),.553,.725,.460, +,N,6,7,7,7 EOF if [ $? -ne 0 ] ; then fail ; fi + +# Now test that weights are properly handled. + +activity="create program 2" +cat << EOF > $TESTFILE +set format = F11.3. +data list notable list /foo * bar * wiz * bang * w *. +begin data. +1 0 3 1 1 +3 9 -50 5 2 +3 4 3 203 1 +4 -9 0 -4 1 +98 78 104 2 3 +3 50 -49 200 1 +end data. + +weight by w. + +correlations + variables = foo bar wiz bang + /statistics=descriptives xprod + . + +EOF +if [ $? -ne 0 ] ; then no_result ; fi + + +activity="run program 2" +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE +if [ $? -ne 0 ] ; then no_result ; fi + +activity="copy results" +cp $TEMPDIR/pspp.csv $TEMPDIR/weighted +if [ $? -ne 0 ] ; then no_result ; fi + +activity="create program 3" +cat << EOF > $TESTFILE +set format = F11.3. +data list notable list /foo * bar * wiz * bang * w *. +begin data. +1 0 3 1 1 +3 9 -50 5 1 +3 9 -50 5 1 +3 4 3 203 1 +4 -9 0 -4 1 +98 78 104 2 1 +98 78 104 2 1 +98 78 104 2 1 +3 50 -49 200 1 +end data. + +weight by w. + +correlations + variables = foo bar wiz bang + /statistics=descriptives xprod + . + +EOF +if [ $? -ne 0 ] ; then no_result ; fi + +activity="run program 3" +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE +if [ $? -ne 0 ] ; then no_result ; fi + +activity="Compare weighted and unweighted results" +diff $TEMPDIR/pspp.csv $TEMPDIR/weighted +if [ $? -ne 0 ] ; then fail ; fi + pass;