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>
31 /* Array of standard colour names */
32 extern const char *data_colour[];
38 plPlotterParams *pl_params;
40 /* The geometry of the chart
41 See diagram at the foot of this file.
59 /* Default font size for the plot (if zero, then use plotter default) */
64 /* Stuff Particular to Cartesians (and Boxplots ) */
65 double ordinate_scale;
66 double abscissa_scale;
75 int chart_initialise(struct chart *ch);
77 void chart_finalise(struct chart *ch);
80 double chart_rounded_tick(double tick);
82 void chart_write_xlabel(struct chart *ch, const char *label);
83 void chart_write_ylabel(struct chart *ch, const char *label);
85 void chart_write_title(struct chart *ch, const char *title, ...);
87 enum tick_orientation {
92 void draw_tick(struct chart *ch, enum tick_orientation orientation,
93 double position, const char *label, ...);
104 void draw_barchart(struct chart *ch, const char *title,
105 const char *xlabel, const char *ylabel, enum bar_opts opt);
107 void draw_box_whisker_chart(struct chart *ch, const char *title);
119 void histogram_write_legend(struct chart *ch, const struct normal_curve *norm);
122 /* Plot a gsl_histogram */
123 void histogram_plot(const gsl_histogram *hist, const char *factorname,
124 const struct normal_curve *norm, short show_normal);
127 /* Create a gsl_histogram and set it's parameters based upon
128 x_min, x_max and bins.
129 The caller is responsible for freeing the histogram.
131 gsl_histogram * histogram_create(double bins, double x_min, double x_max) ;
145 /* Draw a piechart */
146 void piechart_plot(const char *title,
147 const struct slice *slices, int n_slices);
149 void draw_scatterplot(struct chart *ch);
152 void draw_lineplot(struct chart *ch);
155 /* Set the scale on chart CH.
156 The scale extends from MIN to MAX .
157 TICK is the approximate number of tick marks.
160 void chart_write_xscale(struct chart *ch,
161 double min, double max, int ticks);
163 void chart_write_yscale(struct chart *ch,
164 double min, double max, int ticks);
167 void chart_datum(struct chart *ch, int dataset, double x, double y);
172 void boxplot_draw_boxplot(struct chart *ch,
179 void boxplot_draw_yscale(struct chart *ch , double y_max, double y_min);
189 void chart_line(struct chart *ch, double slope, double intercept,
190 double limit1, double limit2, enum CHART_DIM limit_d);
196 The anatomy of a chart is as follows.
198 +-------------------------------------------------------------+
199 | +----------------------------------+ |
203 | +----------------------------------+ |
204 |+----------++----------------------------------++-----------+|
215 || Ordinate || Data || Legend ||
226 |+----------++----------------------------------++-----------+| --
227 | +----------------------------------+ | - ^ data_bottom
229 | | | | | abscissa_top
230 | +----------------------------------+ | v v
231 +-------------------------------------------------------------+ ----
241 |<--------------------------------------------->|| |
243 |<---------------------------------------------->| |
245 |<---------------------------------------------------------->|