X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fbox-whisker.h;h=ccafef1fc9069a509c064f813374356339a6775a;hb=656e46ed80e20bf34312f01607a7bebdd2d8d622;hp=f6856d1e8a125783242b9a67ff8f9b8f5150eacb;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/math/box-whisker.h b/src/math/box-whisker.h index f6856d1e8a..ccafef1fc9 100644 --- a/src/math/box-whisker.h +++ b/src/math/box-whisker.h @@ -26,7 +26,7 @@ However, there's no reason not to use it for other purposes too. */ struct tukey_hinges; - +struct variable; struct outlier { @@ -48,12 +48,12 @@ struct box_whisker double step; - size_t casenumber_idx; + size_t id_idx; const struct variable *id_var; }; struct box_whisker * box_whisker_create (const struct tukey_hinges *, - const struct variable *, size_t); + size_t id_idx, const struct variable *id_var); void box_whisker_whiskers (const struct box_whisker *bw, double whiskers[2]);