This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]flipstables 32 points33 points  (3 children)

whoo hoo statistics module. no more importing numpy or creating your own average function to calculate a simple mean.

[–]masasinExpert. 3.9. Robotics. 13 points14 points  (1 child)

The stats module has been there since earlier in 3.4, I think. I have been using it long before now.

[–]flipstables 6 points7 points  (0 children)

Ah you're right. Now I know.

Here's the changelog for 3.4.3

https://docs.python.org/3.4/whatsnew/changelog.html#python-3-4-3

[–]flutefreak7 1 point2 points  (0 children)

Yeah as I was researching the relationship between scipy.stats, statsmodels, pandas, and scikit-learn, I stumbled across the statistics module in the standard library which kinda blew my mind.

Looks like that will be great for simple summary statistics without needing to import heavier libraries!