This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients Alextp, BreamoreBoy, ezio.melotti, rhettinger, steven.daprano, zach.ware
Date 2014-05-14.12:04:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1400069097.78.0.270776447417.issue21046@psf.upfronthosting.co.za>
In-reply-to
Content
> E.g.
> median([x1, x2, x3, x4, x5]) = x3
> median([x1, x2, x3, x4, x5, x6]) = (x3 + x4) / 2

The docs seem to already contain similar examples for some of the functions (e.g. median()), but not for others (e.g. mean()).
For these, if the formula can be expressed with a simple Python equivalent (e.g. sum(values) / len(values)), I think it would be reasonable to add it.
History
Date User Action Args
2014-05-14 12:04:57ezio.melottisetrecipients: + ezio.melotti, rhettinger, steven.daprano, BreamoreBoy, zach.ware, Alextp
2014-05-14 12:04:57ezio.melottisetmessageid: <1400069097.78.0.270776447417.issue21046@psf.upfronthosting.co.za>
2014-05-14 12:04:57ezio.melottilinkissue21046 messages
2014-05-14 12:04:57ezio.melotticreate