X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcharts%2Fbox-whisker.h;h=7b2c4b8fdc1c2407c86cfe308a1c5ed4b72a31ba;hb=2acfe799af1fd4504ee1278e0b8864ace451688a;hp=656d8d49b3cb496277b0a8d49f386b1e6492d41c;hpb=dca2f6d80dcb53dd1a12c675118d4b7e0716b292;p=pspp-builds.git diff --git a/src/output/charts/box-whisker.h b/src/output/charts/box-whisker.h index 656d8d49..7b2c4b8f 100644 --- a/src/output/charts/box-whisker.h +++ b/src/output/charts/box-whisker.h @@ -18,28 +18,15 @@ #define BOX_WHISKER_H struct chart ; -struct weighted_value; -struct metrics; +struct box_whisker; -/* Draw an outlier on the plot CH - * at CENTRELINE - * The outlier is in (*wvp)[idx] - * If EXTREME is non zero, then consider it to be an extreme - * value - */ -void draw_outlier(struct chart *ch, double centreline, - struct weighted_value **wvp, - int idx, - short extreme); +void boxplot_draw_boxplot (struct chart *ch, + double box_centre, + double box_width, + const struct box_whisker *w, + const char *name); -void boxplot_draw_boxplot(struct chart *ch, - double box_centre, - double box_width, - struct metrics *m, - const char *name); - - -void boxplot_draw_yscale(struct chart *ch , double y_max, double y_min); +void boxplot_draw_yscale (struct chart *ch , double y_max, double y_min); #endif