Updated the docs and the parser for EXAMINE to make it clearer which options
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 3 Nov 2006 09:54:15 +0000 (09:54 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 3 Nov 2006 09:54:15 +0000 (09:54 +0000)
are currently supported and which are not.

doc/statistics.texi
src/language/stats/examine.q

index 9f1923b8e82ddad89e8a4c9183cf9bff3c345e5a..8d5971da1c04ae25116566f25682636fb69f882d 100644 (file)
@@ -226,8 +226,7 @@ For instance, @code{/NTILES=4} would cause quartiles to be reported.
 EXAMINE
         VARIABLES=var_list [BY factor_list ]
         /STATISTICS=@{DESCRIPTIVES, EXTREME[(n)], ALL, NONE@}
-        /PLOT=@{STEMLEAF, BOXPLOT, NPPLOT, SPREADLEVEL(n), HISTOGRAM, 
-              ALL, NONE@}
+        /PLOT=@{BOXPLOT, NPPLOT, HISTOGRAM, ALL, NONE@}
         /CINTERVAL n
         /COMPARE=@{GROUPS,VARIABLES@}
         /ID=@{case_number, var_name@}
index f72a80248b96049ba113aa3dfb09582a84c57539..6f34eee9a7d9f420360383294bd355e3e3328d2f 100644 (file)
@@ -279,6 +279,12 @@ output_examine(void)
       if ( cmd.sbc_plot) 
        {
          int v;
+         if ( cmd.a_plot[XMN_PLT_STEMLEAF] ) 
+           msg (SW, _("%s is not currently supported."), "STEMLEAF");
+
+         if ( cmd.a_plot[XMN_PLT_SPREADLEVEL] ) 
+           msg (SW, _("%s is not currently supported."), "SPREADLEVEL");
+
          if ( cmd.a_plot[XMN_PLT_NPPLOT] ) 
            {
              for ( v = 0 ; v < n_dependent_vars; ++v )