X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fbox-whisker.c;fp=src%2Fmath%2Fbox-whisker.c;h=86277333ff4ec67611833860d2402611dfd133a3;hb=71f9b6d6c14525cd41ba77c9fd50aa13d0da830c;hp=506251682c7bf17106fba7525c2f6dc823ecac1c;hpb=feb269112e14589474c0a75e96cd5a892d9aaeef;p=pspp diff --git a/src/math/box-whisker.c b/src/math/box-whisker.c index 506251682c..86277333ff 100644 --- a/src/math/box-whisker.c +++ b/src/math/box-whisker.c @@ -144,26 +144,24 @@ struct box_whisker * box_whisker_create (const struct tukey_hinges *th, size_t id_idx, const struct variable *id_var) { - struct box_whisker *w = XZALLOC (struct box_whisker); - struct order_stats *os = &w->parent; - struct statistic *stat = &os->parent; - - os->n_k = 0; - - stat->destroy = destroy; - stat->accumulate = acc; - - tukey_hinges_calculate (th, w->hinges); - - w->id_idx = id_idx; - w->id_var = id_var; - - w->step = (w->hinges[2] - w->hinges[0]) * 1.5; - - w->whiskers[1] = w->hinges[2]; - w->whiskers[0] = SYSMIS; - - ll_init (&w->outliers); + double hinges[3]; + tukey_hinges_calculate (th, hinges); + + struct box_whisker *w = xmalloc (sizeof *w); + *w = (struct box_whisker) { + .parent = { + .parent = { + .accumulate = acc, + .destroy = destroy, + }, + }, + .hinges = { hinges[0], hinges[1], hinges[2] }, + .whiskers = { SYSMIS, hinges[2] }, + .outliers = LL_INITIALIZER (w->outliers), + .step = (hinges[2] - hinges[0]) * 1.5, + .id_idx = id_idx, + .id_var = id_var, + }; return w; }