1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2004, 2009, 2011 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include <gsl/gsl_randist.h>
25 #include "libpspp/cast.h"
26 #include "math/histogram.h"
27 #include "math/moments.h"
28 #include "output/chart-item-provider.h"
29 #include "output/charts/plot-hist.h"
32 #define _(msgid) gettext (msgid)
34 /* Plots a histogram of the data in HIST with the given LABEL.
35 Labels the histogram with each of N, MEAN, and STDDEV that is
36 not SYSMIS. If all three are not SYSMIS and SHOW_NORMAL is
37 true, also draws a normal curve on the histogram. */
39 histogram_chart_create (const gsl_histogram *hist, const char *label,
40 double n, double mean, double stddev,
43 struct histogram_chart *h;
45 h = xmalloc (sizeof *h);
46 chart_item_init (&h->chart_item, &histogram_chart_class, label);
47 h->gsl_hist = hist != NULL ? gsl_histogram_clone (hist) : NULL;
51 h->show_normal = show_normal;
52 return &h->chart_item;
56 histogram_chart_destroy (struct chart_item *chart_item)
58 struct histogram_chart *h = UP_CAST (chart_item, struct histogram_chart,
60 if (h->gsl_hist != NULL)
61 gsl_histogram_free (h->gsl_hist);
65 const struct chart_item_class histogram_chart_class =
67 histogram_chart_destroy