output: Get rid of histogram_plot_n function.
authorBen Pfaff <blp@gnu.org>
Wed, 1 Jul 2009 22:53:55 +0000 (15:53 -0700)
committerBen Pfaff <blp@gnu.org>
Wed, 1 Jul 2009 22:53:57 +0000 (15:53 -0700)
For some reason we have two functions to plot histograms, one of which is
marked "deprecated" and the other of which is a trivial wrapper.  It's
easy, however, to get rid of one of them and make the caller in charge of
doing what the wrapper does, especially since the wrapper had only a single
caller.  That is what this commit does.

src/language/stats/examine.q
src/language/stats/frequencies.q
src/output/charts/dummy-chart.c
src/output/charts/plot-hist.c
src/output/charts/plot-hist.h

index c0facb0b84437774c51861a3f243a20d6b2386a3..99ff5c4586635539869806b0fdd2779e73d60a05 100644 (file)
@@ -448,15 +448,18 @@ show_histogram (const struct variable **dependent_var,
          struct string str;
          const struct factor_result *result =
            ll_data (ll, struct factor_result, ll);
+          double mean, var, n;
 
          ds_init_empty (&str);
          ds_put_format (&str, "%s ", var_get_name (dependent_var[v]));
 
          factor_to_string (fctr, result, &str);
 
+          moments1_calculate ((struct moments1 *) result->metrics[v].moments,
+                              &n, &mean, &var, NULL,  NULL);
          histogram_plot ((struct histogram *) result->metrics[v].histogram,
                          ds_cstr (&str),
-                         (struct moments1 *) result->metrics[v].moments);
+                         n, mean, sqrt (var), false);
 
          ds_destroy (&str);
        }
index 1fd98a306e37be512e859863a7f2821c36a13b60..e44e8e216800f1dd788b4adf70160faf2b3014d3 100644 (file)
@@ -610,7 +610,7 @@ postcalc (const struct dataset *ds)
 
          hist = freq_tab_to_hist (ft,v);
 
-         histogram_plot_n (hist, var_to_string(v),
+         histogram_plot (hist, var_to_string(v),
                          vf->tab.valid_cases,
                          d[frq_mean],
                          d[frq_stddev],
index e22f958f7c8e81547c9b103d0de3b37628ce07ee..b859d0e01be0588019bacb022e18afbca8adb313 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2005 Free Software Foundation, Inc.
+   Copyright (C) 2005, 2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -80,16 +80,9 @@ chart_datum (struct chart *ch UNUSED, int dataset UNUSED UNUSED,
 
 void
 histogram_plot (const struct histogram *hist UNUSED,
-               const char *label UNUSED,
-               const struct moments1 *m UNUSED)
-{
-}
-
-void
-histogram_plot_n (const struct histogram *hist UNUSED,
-                 const char *label UNUSED,
-                 double n UNUSED, double mean UNUSED, double stddev UNUSED,
-                 bool show_normal UNUSED)
+                const char *label UNUSED,
+                double n UNUSED, double mean UNUSED, double stddev UNUSED,
+                bool show_normal UNUSED)
 {
 }
 
index 4b11618a2f1a409fa3d92a9071a456131ce8485a..abe2908888cbb276784d402b2aa2d5e099466160 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright  (C) 2004 Free Software Foundation, Inc.
+   Copyright  (C) 2004, 2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 static void
 histogram_write_legend (struct chart *ch, double n, double mean, double stddev)
 {
+  double y;
   char buf[100];
 
   if (!ch)
     return ;
 
+  y = ch->data_bottom;
   pl_savestate_r (ch->lp);
 
-  sprintf (buf, "N = %.2f", n);
-  pl_move_r (ch->lp, ch->legend_left, ch->data_bottom);
-  pl_alabel_r (ch->lp, 0, 'b', buf);
+  if (n != SYSMIS)
+    {
+      sprintf (buf, "N = %.2f", n);
+      pl_move_r (ch->lp, ch->legend_left, y);
+      pl_alabel_r (ch->lp, 0, 'b', buf);
+      y += ch->font_size * 1.5;
+    }
 
-  sprintf (buf, "Mean = %.1f", mean);
-  pl_fmove_r (ch->lp,ch->legend_left,ch->data_bottom + ch->font_size * 1.5);
-  pl_alabel_r (ch->lp, 0, 'b', buf);
+  if (mean != SYSMIS)
+    {
+      sprintf (buf, "Mean = %.1f", mean);
+      pl_fmove_r (ch->lp,ch->legend_left, y);
+      pl_alabel_r (ch->lp, 0, 'b', buf);
+      y += ch->font_size * 1.5;
+    }
 
-  sprintf (buf, "Std. Dev = %.2f", stddev);
-  pl_fmove_r (ch->lp, ch->legend_left, ch->data_bottom + ch->font_size * 1.5 * 2);
-  pl_alabel_r (ch->lp, 0, 'b', buf);
+  if (stddev != SYSMIS)
+    {
+      sprintf (buf, "Std. Dev = %.2f", stddev);
+      pl_fmove_r (ch->lp, ch->legend_left, y);
+      pl_alabel_r (ch->lp, 0, 'b', buf);
+    }
 
   pl_restorestate_r (ch->lp);
 }
@@ -110,25 +123,15 @@ hist_draw_bar (struct chart *ch, const struct histogram *hist, int bar)
 
 
 
+/* Plots a histogram of the data in HIST with the given LABEL.
+   Labels the histogram with each of N, MEAN, and STDDEV that is
+   not SYSMIS.  If all three are not SYSMIS and SHOW_NORMAL is
+   true, also draws a normal curve on the histogram. */
 void
 histogram_plot (const struct histogram *hist,
-               const char *label,
-               const struct moments1 *m)
-{
-  double mean, var, n;
-
-  moments1_calculate (m, &n, &mean, &var, NULL,  NULL);
-
-  histogram_plot_n (hist, label, n, mean, sqrt(var), m);
-}
-
-
-/* This function is deprecated.  Don't use it in new code */
-void
-histogram_plot_n (const struct histogram *hist,
-                 const char *label,
-                 double n, double mean, double stddev,
-                 bool show_normal)
+                const char *label,
+                double n, double mean, double stddev,
+                bool show_normal)
 {
   int i;
   int bins;
@@ -157,7 +160,7 @@ histogram_plot_n (const struct histogram *hist,
 
   histogram_write_legend (ch, n, mean, stddev);
 
-  if (show_normal)
+  if (show_normal && n != SYSMIS && mean != SYSMIS && stddev != SYSMIS)
     {
       /* Draw the normal curve */
 
index 606206d5012c47d4e7b239e0a0230bf1788cea8e..74b10bd3cfd98bd3eec5434d3c22ebedfe2295f0 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2004 Free Software Foundation, Inc.
+   Copyright (C) 2004, 2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -23,17 +23,14 @@ struct chart;
 struct moments1;
 struct histogram;
 
-/* Plot M onto histogram HIST and label it with LABEL */
-void histogram_plot (const struct histogram *hist,
-                    const char *label,  const struct moments1 *m);
-
-
-/* A wrapper aroud histogram_plot.
-   Don't use this function.  It's legacy only */
-void histogram_plot_n (const struct histogram *hist,
-                      const char *label,
-                      double n, double mean, double var,
-                      bool show_normal);
-
+/* Plots a histogram of the data in HIST with the given LABEL.
+   Labels the histogram with each of N, MEAN, and STDDEV that is
+   not SYSMIS.  If all three are not SYSMIS and SHOW_NORMAL is
+   true, also draws a normal curve on the histogram. */
+void
+histogram_plot (const struct histogram *hist,
+                const char *label,
+                double n, double mean, double stddev,
+                bool show_normal);
 
 #endif