Results 28 comments of Chris Moffitt

Another potential display option From[ Ted Petrou](https://twitter.com/TedPetrou/status/1280884397198266370)

Thanks. Glad you find it helpful. I'll need to look at the differences between cuDF and pandas dataframes. I'm aware of cuDF but have not used them. Let me look...

That's a good idea. I think all the data is there so it should not be too terribly difficult to do. If you have an interest in trying to do...

Thank you. This is very helpful. I appreciate the detailed example.

Martyn - The problem is that the subtotal functions does some sorting behind the scenes to make sure the subtotals can be calculated then stacking back into a cohesive dataframe....

I've finally started to take a look at this and can not reproduce. Can you recreate with the seaborn titanic data: ``` df = sns.load_dataset('titanic') df.groupby(['sex', 'class']).agg({'fare': ['sum']}).stb.subtotal() ``` When...

Ah. Got it. I'll look into that.. Thanks for the example.

Ah. Great catch! Thanks for pointing this out. I definitely didn't catch this. You're correct the np.arange() code your using is a good alternative. I'm going to also look through...