From: John Darrington Date: Fri, 3 Nov 2006 09:54:15 +0000 (+0000) Subject: Updated the docs and the parser for EXAMINE to make it clearer which options X-Git-Tag: v0.6.0~705 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ed7ffcf1a0ed3c8ae68099c9f212592e8a5ec4a;p=pspp-builds.git Updated the docs and the parser for EXAMINE to make it clearer which options are currently supported and which are not. --- diff --git a/doc/statistics.texi b/doc/statistics.texi index 9f1923b8..8d5971da 100644 --- a/doc/statistics.texi +++ b/doc/statistics.texi @@ -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@} diff --git a/src/language/stats/examine.q b/src/language/stats/examine.q index f72a8024..6f34eee9 100644 --- a/src/language/stats/examine.q +++ b/src/language/stats/examine.q @@ -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 )