"Sig." is an abbreviation, "Exact" is not.
authorBen Pfaff <blp@gnu.org>
Thu, 16 Jul 2009 05:15:03 +0000 (22:15 -0700)
committerBen Pfaff <blp@gnu.org>
Fri, 17 Jul 2009 02:54:03 +0000 (19:54 -0700)
src/language/stats/crosstabs.q
src/language/stats/wilcoxon.c
tests/command/npar-wilcoxon.sh

index a6b224693737a2e85212687c053c066190684c49..8347bb5f09f81637bbceba245463c0397388bb78 100644 (file)
@@ -1233,9 +1233,9 @@ create_chisq_table (struct pivot_table *pt)
   tab_text (chisq, 3, 0, TAB_RIGHT | TAT_TITLE,
             _("Asymp. Sig. (2-sided)"));
   tab_text (chisq, 4, 0, TAB_RIGHT | TAT_TITLE,
-            _("Exact. Sig. (2-sided)"));
+            _("Exact Sig. (2-sided)"));
   tab_text (chisq, 5, 0, TAB_RIGHT | TAT_TITLE,
-            _("Exact. Sig. (1-sided)"));
+            _("Exact Sig. (1-sided)"));
   tab_offset (chisq, 0, 1);
 
   return chisq;
index 03a307f3b8c304394bb71c380b02d39aec7cb327..310206c0e7bf88961e820c05f97831f8568da5a6 100644 (file)
@@ -324,12 +324,12 @@ show_tests_box (const struct wilcoxon_state *ws,
 
 
   tab_text (table,  0, 1,  TAB_LEFT, _("Z"));
-  tab_text (table,  0, 2,  TAB_LEFT, _("Asymp. Sig (2-tailed)"));
+  tab_text (table,  0, 2,  TAB_LEFT, _("Asymp. Sig. (2-tailed)"));
 
   if ( exact )
     {
-      tab_text (table,  0, 3,  TAB_LEFT, _("Exact Sig (2-tailed)"));
-      tab_text (table,  0, 4,  TAB_LEFT, _("Exact Sig (1-tailed)"));
+      tab_text (table,  0, 3,  TAB_LEFT, _("Exact Sig. (2-tailed)"));
+      tab_text (table,  0, 4,  TAB_LEFT, _("Exact Sig. (1-tailed)"));
 
 #if 0
       tab_text (table,  0, 5,  TAB_LEFT, _("Point Probability"));
index ae0d39fcba50afedfa9c7f66db21af4310387d96..4242b55b6581dcd82e551392856857c7fc3919e0 100755 (executable)
@@ -107,14 +107,14 @@ cat > $TEMPDIR/results.txt <<EOF
 #============================#==#=========#============#
 
 1.2 NPAR TESTS.  Test Statistics
-#=====================#==============#
-#                     #second - first#
-#=====================#==============#
-#Z                    #          -.18#
-#Asymp. Sig (2-tailed)#           .86#
-#Exact Sig (2-tailed) #           .89#
-#Exact Sig (1-tailed) #           .45#
-#=====================#==============#
+#======================#==============#
+#                      #second - first#
+#======================#==============#
+#Z                     #          -.18#
+#Asymp. Sig. (2-tailed)#           .86#
+#Exact Sig. (2-tailed) #           .89#
+#Exact Sig. (1-tailed) #           .45#
+#======================#==============#
 
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi