mpurg / qtools

a Python library and CLI for the molecular dynamics simulation package Q
MIT License
19 stars 10 forks source link

Writing your own 'numpy' functions is a real easy way to get confused #19

Open malramsay64 opened 6 years ago

malramsay64 commented 6 years ago

Because numpy is so ubiquitous, particularly within the scientific space, writing your own functions which replicate some of their functionality is a great way to confuse maintainers or anyone looking through your code.

Something like stats or statistics would be a much clearer choice. I will mention there is a statistics module in the python3 standard library.

mpurg commented 6 years ago

Good point, I've switched to stats. I make use of the statistics functions in Py3. (branch devel)