1 /* PSPP - computes sample statistics.
2 Copyright (C) 2004 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., 59 Temple Place - Suite 330, Boston, MA
26 #include <gsl/gsl_histogram.h>
34 /* Array of standard colour names */
35 extern const char *data_colour[];
42 plPlotterParams *pl_params;
48 /* The geometry of the chart
49 See diagram at the foot of this file.
67 /* Default font size for the plot (if zero, then use plotter default) */
72 /* Stuff Particular to Cartesians (and Boxplots ) */
73 double ordinate_scale;
74 double abscissa_scale;
83 struct chart * chart_create(void);
84 void chart_submit(struct chart *ch);
86 double chart_rounded_tick(double tick);
88 void chart_write_xlabel(struct chart *ch, const char *label);
89 void chart_write_ylabel(struct chart *ch, const char *label);
91 void chart_write_title(struct chart *ch, const char *title, ...);
93 enum tick_orientation {
98 void draw_tick(struct chart *ch, enum tick_orientation orientation,
99 double position, const char *label, ...);
110 void draw_barchart(struct chart *ch, const char *title,
111 const char *xlabel, const char *ylabel, enum bar_opts opt);
113 void draw_box_whisker_chart(struct chart *ch, const char *title);
125 void histogram_write_legend(struct chart *ch, const struct normal_curve *norm);
128 /* Plot a gsl_histogram */
129 void histogram_plot(const gsl_histogram *hist, const char *factorname,
130 const struct normal_curve *norm, short show_normal);
133 /* Create a gsl_histogram and set it's parameters based upon
134 x_min, x_max and bins.
135 The caller is responsible for freeing the histogram.
137 gsl_histogram * histogram_create(double bins, double x_min, double x_max) ;
151 /* Draw a piechart */
152 void piechart_plot(const char *title,
153 const struct slice *slices, int n_slices);
155 void draw_scatterplot(struct chart *ch);
158 void draw_lineplot(struct chart *ch);
161 /* Set the scale on chart CH.
162 The scale extends from MIN to MAX .
163 TICK is the approximate number of tick marks.
166 void chart_write_xscale(struct chart *ch,
167 double min, double max, int ticks);
169 void chart_write_yscale(struct chart *ch,
170 double min, double max, int ticks);
173 void chart_datum(struct chart *ch, int dataset, double x, double y);
178 void boxplot_draw_boxplot(struct chart *ch,
185 void boxplot_draw_yscale(struct chart *ch , double y_max, double y_min);
195 void chart_line(struct chart *ch, double slope, double intercept,
196 double limit1, double limit2, enum CHART_DIM limit_d);
202 The anatomy of a chart is as follows.
204 +-------------------------------------------------------------+
205 | +----------------------------------+ |
209 | +----------------------------------+ |
210 |+----------++----------------------------------++-----------+|
221 || Ordinate || Data || Legend ||
232 |+----------++----------------------------------++-----------+| --
233 | +----------------------------------+ | - ^ data_bottom
235 | | | | | abscissa_top
236 | +----------------------------------+ | v v
237 +-------------------------------------------------------------+ ----
247 |<--------------------------------------------->|| |
249 |<---------------------------------------------->| |
251 |<---------------------------------------------------------->|