X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fexamine.c;h=a9deed66b91b5729bc53f1c042342b530f3be985;hb=29ff1e6f7b8220c0800740e525381053ca53d2d4;hp=dabcdfe9b35e6135f929444535a889f069ad7ac6;hpb=edcf839b61451c61f3ea9eb62b38b09872bd9793;p=pspp diff --git a/src/language/stats/examine.c b/src/language/stats/examine.c index dabcdfe9b3..a9deed66b9 100644 --- a/src/language/stats/examine.c +++ b/src/language/stats/examine.c @@ -845,7 +845,9 @@ extremes_report (const struct examine *cmd, int iact_idx) for (size_t i = 0; i < cmd->disp_extremes; i++) pivot_category_create_leaf (order->root, pivot_value_new_integer (i + 1)); - pivot_dimension_create (table, PIVOT_AXIS_ROW, N_("Extreme"), + pivot_dimension_create (table, PIVOT_AXIS_ROW, + /* TRANSLATORS: This is a noun, not an adjective. */ + N_("Extreme"), N_("Highest"), N_("Lowest")); const struct interaction *iact = cmd->iacts[iact_idx]; @@ -1318,6 +1320,12 @@ cleanup_exploratory_stats (struct examine *cmd) stat->destroy (stat); } + if (es[v].shapiro_wilk) + { + stat = &es[v].shapiro_wilk->parent.parent; + stat->destroy (stat); + } + os = &es[v].trimmed_mean->parent; stat = &os->parent; stat->destroy (stat);