|
|
|
|
|
by mvanveen
4693 days ago
|
|
numpy has all sorts of awful C bindings which make it less than versatile in environments where you want pure Python. It's great from a performance point of view, but horrible for compatibility. Google App Engine used to suffer because of this (more specifically, it still only restricts your runtime to pure Python, but now you can import numpy at least). I believe the PyPy folks have also had their own set of struggles with numpy compatibility, although I'm not sure what the state of that is at present. In any case, I think these compatibility concerns alone make a strong argument for including simple Statistics tooling into the standard library. |
|
I would actually prefer to have numpy included before those statistics functions.