diff --git a/web/examples/complex-reduce.html b/web/examples/complex-reduce.html new file mode 100644 index 000000000..36fcaea05 --- /dev/null +++ b/web/examples/complex-reduce.html @@ -0,0 +1,139 @@ + + +
+Frequently asked question: how to show the minimum/maximum of some value in the rows?
+ +Some kinds of reductions require the entire set of values at every step: median, mode, minimum, + maximum. (It is almost by accident that you can get away with calculating the mean without looking + at all the rows.) This example shows how to keep the set of + values. See + the source for details.
+ +