Re: Python Data Analysis Recommendations

2016-01-02 Thread Sameer Grover
I also collect data by sweeping multiple parameters in a similar fashion. I find pandas very convenient for analysis. I don't use all the features of pandas. I mainly use it for selecting certain rows from the data, sometimes using database style merge operations, and plotting using matplotlib. Thi

Re: Python Data Analysis Recommendations

2016-01-01 Thread Ravi Narasimhan
On 1/1/16 1:24 PM, Mark Lawrence wrote: > On 31/12/2015 17:15, Rob Gaddi wrote: >> I'm looking for some advice on handling data collection/analysis in >> Python. ... >> The whole process feels a bit grindy; like I keep having to do a lot of >> ad-hoc stitching things together. And I keep hearing

Re: Python Data Analysis Recommendations

2016-01-01 Thread Mark Lawrence
On 31/12/2015 17:15, Rob Gaddi wrote: I'm looking for some advice on handling data collection/analysis in Python. I do a lot of big, time consuming experiments in which I run a long data collection (a day or a weekend) in which I sweep a bunch of variables, then come back offline and try to cut

Python Data Analysis Recommendations

2015-12-31 Thread Rob Gaddi
I'm looking for some advice on handling data collection/analysis in Python. I do a lot of big, time consuming experiments in which I run a long data collection (a day or a weekend) in which I sweep a bunch of variables, then come back offline and try to cut the data into something that makes sense