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., 51 Franklin Street, Fifth Floor, Boston, MA
26 #include "factor_stats.h"
29 /* Draw a box-and-whiskers plot
32 /* Draw an outlier on the plot CH
34 * The outlier is in (*wvp)[idx]
35 * If EXTREME is non zero, then consider it to be an extreme
39 draw_outlier(struct chart *ch, double centreline,
40 struct weighted_value **wvp,
46 draw_outlier(struct chart *ch, double centreline,
47 struct weighted_value **wvp,
54 #define MARKER_CIRCLE 4
60 (wvp[idx]->v.f - ch->y_min ) * ch->ordinate_scale,
61 extreme?MARKER_STAR:MARKER_CIRCLE,
64 pl_moverel_r(ch->lp, 10,0);
66 snprintf(label, 10, "%d", wvp[idx]->case_nos->num);
68 pl_alabel_r(ch->lp, 'l', 'c', label);
74 boxplot_draw_boxplot(struct chart *ch,
83 const double *hinge = m->hinge;
84 struct weighted_value **wvp = m->wvp;
85 const int n_data = m->n_data;
87 const double step = (hinge[2] - hinge[0]) * 1.5;
90 const double box_left = box_centre - box_width / 2.0;
92 const double box_right = box_centre + box_width / 2.0;
95 const double box_bottom =
96 ch->data_bottom + ( hinge[0] - ch->y_min ) * ch->ordinate_scale;
99 const double box_top =
100 ch->data_bottom + ( hinge[2] - ch->y_min ) * ch->ordinate_scale;
104 /* Can't really draw a boxplot if there's no data */
108 whisker[1] = hinge[2];
109 whisker[0] = wvp[0]->v.f;
111 for ( i = 0 ; i < n_data ; ++i )
113 if ( hinge[2] + step > wvp[i]->v.f)
114 whisker[1] = wvp[i]->v.f;
116 if ( hinge[0] - step > wvp[i]->v.f)
117 whisker[0] = wvp[i]->v.f;
122 const double bottom_whisker =
123 ch->data_bottom + ( whisker[0] - ch->y_min ) * ch->ordinate_scale;
125 const double top_whisker =
126 ch->data_bottom + ( whisker[1] - ch->y_min ) * ch->ordinate_scale;
129 pl_savestate_r(ch->lp);
133 pl_savestate_r(ch->lp);
134 pl_fillcolorname_r(ch->lp,ch->fill_colour);
135 pl_filltype_r(ch->lp,1);
142 pl_restorestate_r(ch->lp);
146 /* Draw the median */
147 pl_savestate_r(ch->lp);
148 pl_linewidth_r(ch->lp,5);
151 ch->data_bottom + ( hinge[1] - ch->y_min ) * ch->ordinate_scale,
153 ch->data_bottom + ( hinge[1] - ch->y_min ) * ch->ordinate_scale);
154 pl_restorestate_r(ch->lp);
157 /* Draw the bottom whisker */
164 /* Draw top whisker */
176 box_centre, bottom_whisker,
177 box_centre, box_bottom);
181 box_centre, top_whisker,
182 box_centre, box_top);
186 for ( i = 0 ; i < n_data ; ++i )
188 if ( wvp[i]->v.f >= hinge[2] + step )
189 draw_outlier(ch, box_centre, wvp, i,
190 ( wvp[i]->v.f > hinge[2] + 2 * step )
193 if ( wvp[i]->v.f <= hinge[0] - step )
194 draw_outlier(ch, box_centre, wvp, i,
195 ( wvp[i]->v.f < hinge[0] - 2 * step )
200 /* Draw tick mark on x axis */
201 draw_tick(ch, TICK_ABSCISSA, box_centre - ch->data_left, name);
203 pl_restorestate_r(ch->lp);
210 boxplot_draw_yscale(struct chart *ch , double y_max, double y_min)
221 y_tick = chart_rounded_tick(fabs(ch->y_max - ch->y_min) / 5.0);
223 ch->y_min = (ceil( ch->y_min / y_tick ) - 1.0 ) * y_tick;
225 ch->y_max = ( floor( ch->y_max / y_tick ) + 1.0 ) * y_tick;
227 ch->ordinate_scale = fabs(ch->data_top - ch->data_bottom)
228 / fabs(ch->y_max - ch->y_min) ;
231 /* Move to data bottom-left */
233 ch->data_left, ch->data_bottom);
235 for ( d = ch->y_min; d <= ch->y_max ; d += y_tick )
237 draw_tick (ch, TICK_ORDINATE, (d - ch->y_min ) * ch->ordinate_scale, "%g", d);