1 /* PSPP - computes sample statistics.
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 Written by John Darrington <john@darrington.wattle.id.au>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 /* Stubs for plotting routines.
22 This module is linked only when charts are not supported */
29 #error This file should be used only when compiling without charts.
40 chart_write_title(struct chart *chart, const char *title, ...)
46 chart_submit(struct chart *chart)
52 chart_write_xscale(struct chart *ch, double min, double max, int ticks)
58 chart_write_yscale(struct chart *ch, double smin, double smax, int ticks)
64 chart_write_xlabel(struct chart *ch, const char *label)
69 chart_write_ylabel(struct chart *ch, const char *label)
75 chart_line(struct chart *ch, double slope, double intercept,
76 double limit1, double limit2, enum CHART_DIM lim_dim)
82 chart_datum(struct chart *ch, int dataset UNUSED, double x, double y)
88 histogram_plot(const gsl_histogram *hist,
89 const char *factorname,
90 const struct normal_curve *norm, short show_normal)
95 boxplot_draw_yscale(struct chart *ch , double y_max, double y_min)
100 boxplot_draw_boxplot(struct chart *ch,
111 piechart_plot(const char *title, const struct slice *slices, int n_slices)