spv: Run Python at build time via $PYTHON variable.
[pspp] / src / language / stats / examine.c
index dabcdfe9b35e6135f929444535a889f069ad7ac6..a9deed66b91b5729bc53f1c042342b530f3be985 100644 (file)
@@ -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);