Added casefilter structure to assist with missing values. Changed T-TEST
[pspp-builds.git] / src / language / stats / examine.q
index f72a80248b96049ba113aa3dfb09582a84c57539..c88fc90b169e393f6a522f610c75f67f216ccdf5 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 ) 
@@ -712,7 +718,7 @@ run_examine(const struct ccase *first, const struct casefile *cf,
   for ( v = 0 ; v < n_dependent_vars ; ++v ) 
     metrics_precalc(&totals[v]);
 
-  for(r = casefile_get_reader (cf);
+  for(r = casefile_get_reader (cf, NULL);
       casereader_read (r, &c) ;
       case_destroy (&c) ) 
     {