Pandas-ipython, How To Create New Data Frames With Drill Down Capabilities
I think my problem is simple but I've made a long post in the interest of being thorough. I need to visualize some data but first I need to perform some calculations that seem too
Solution 1:
It sounds like you want to run a database query like this:
SELECTuser, show, month, wifi, sum(time_in_pp)
GROUPBYuser, show, month, wifi
HAVINGsum(time_in_pp) >3
Put it into a database and run your queries using pandas sql interface or ordinary python queries. Presumably you index your database table on these columns.
Post a Comment for "Pandas-ipython, How To Create New Data Frames With Drill Down Capabilities"