X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Fcharts%2Fplot-hist.h;h=1e5b59edb5d8458badf707b3f6c21a424afbc3c2;hb=8b71948cd57dbd2787cb4c50525b957e9be8a62b;hp=606206d5012c47d4e7b239e0a0230bf1788cea8e;hpb=8af88c0b7ea2fe75df7e45497988ed0371006a86;p=pspp-builds.git diff --git a/src/output/charts/plot-hist.h b/src/output/charts/plot-hist.h index 606206d5..1e5b59ed 100644 --- a/src/output/charts/plot-hist.h +++ b/src/output/charts/plot-hist.h @@ -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 @@ -14,26 +14,22 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#ifndef PLOT_HIST_H -#define PLOT_HIST_H +#ifndef OUTPUT_PLOT_HIST_H +#define OUTPUT_PLOT_HIST_H #include 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); - - -#endif +/* Creates and returns a new chart that depicts 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. */ +struct chart *histogram_chart_create (const struct histogram *hist, + const char *label, + double n, double mean, double stddev, + bool show_normal); + +#endif /* output/plot-hist.h */