Lesser-Known Python Data Analysis Libraries
jyotiska.github.io
Lesser-Known Python Data Analysis Libraries
1–10 of 69 posts
Re: Lesser-Known Python Data Analysis Libraries
#2Re: Lesser-Known Python Data Analysis Libraries
#3I use histogram.py from https://github.com/bitly/data_hacks all the time...
Re: Lesser-Known Python Data Analysis Libraries
#4Re: Lesser-Known Python Data Analysis Libraries
#5I use histogram.py from https://github.com/bitly/data_hacks all the time...
Re: Lesser-Known Python Data Analysis Libraries
#6I use histogram.py from https://github.com/bitly/data_hacks all the time...
Re: Lesser-Known Python Data Analysis Libraries
#7I'm equally excited for all the suggestions sure to appear in the comments (hinthint). I got a ton from this thread last time, even though they weren't data analysis specific:
Re: Lesser-Known Python Data Analysis Libraries
#8Whilst this isn't a data analysis library per se, PyOpenCL may be of interest for people doing data analysis work in Python:
Re: Lesser-Known Python Data Analysis Libraries
#9Natsort is a lifesaver when working with filenames numbered by humans (like file1, file2 ... file11), those will be sorted correctly. Beats asking people to "Please add leading 0's oh and when you suspect you will pass 100, add 2 leading 0's."
sorted(files, key=lambda x: int(x[4:])
, and it will do the right thing.
Although with natsort, you don't have to parse the actual strings yourself.