You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2011/06/28 19:25:33 UTC

[Couchdb Wiki] Update of "Built-In_Reduce_Functions" by RaulSierra

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "Built-In_Reduce_Functions" page has been changed by RaulSierra:
http://wiki.apache.org/couchdb/Built-In_Reduce_Functions?action=diff&rev1=3&rev2=4

Comment:
sumsqr is the sum over all squares, not square roots

  ]}
  }}}
  
- {{{sum}}} and {{{count}}} is the equiverlent to {{{_sum}}} and {{{_count}}}. {{{min}}} and {{{max}}} are the minimum and maximum values of the emitted values. {{{sumsqr}}} is the sum over all square roots of the emitted values (useful for statistics calculations).
+ {{{sum}}} and {{{count}}} is the equiverlent to {{{_sum}}} and {{{_count}}}. {{{min}}} and {{{max}}} are the minimum and maximum values of the emitted values. {{{sumsqr}}} is the sum over all squares of the emitted values (useful for statistics calculations).