X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcharts%2Fbox-whisker.h;h=7b2c4b8fdc1c2407c86cfe308a1c5ed4b72a31ba;hb=99196bc8cab27560e9d96654607151e3ae566b78;hp=e536b83316a106e948d7477ece61189a8718dfd9;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/output/charts/box-whisker.h b/src/output/charts/box-whisker.h index e536b833..7b2c4b8f 100644 --- a/src/output/charts/box-whisker.h +++ b/src/output/charts/box-whisker.h @@ -17,31 +17,16 @@ #ifndef BOX_WHISKER_H #define BOX_WHISKER_H -#include - struct chart ; -struct weighted_value; -struct metrics; - -/* 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); - +struct box_whisker; -void boxplot_draw_boxplot(struct chart *ch, - double box_centre, - double box_width, - struct metrics *m, - const char *name); +void boxplot_draw_boxplot (struct chart *ch, + double box_centre, + double box_width, + const struct box_whisker *w, + 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