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 Folket
Recipients Folket
Date 2020-06-03.12:31:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591187481.58.0.119061539675.issue40855@roundup.psfhosted.org>
In-reply-to
Content
statistics.variance also has the same problem. 

>>> import statistics
>>> statistics.stdev([1,2])
0.7071067811865476
>>> statistics.stdev([1,2], 3)
0.7071067811865476
>>> statistics.stdev([1,2], 1.5)
0.7071067811865476

should be 
0.7071067811865476
2.23606797749979
0.5
History
Date User Action Args
2020-06-03 12:31:21Folketsetrecipients: + Folket
2020-06-03 12:31:21Folketsetmessageid: <1591187481.58.0.119061539675.issue40855@roundup.psfhosted.org>
2020-06-03 12:31:21Folketlinkissue40855 messages
2020-06-03 12:31:21Folketcreate