I would like to know if the rows selected by:
groupby(['a', 'b'])
are the same as the rows selected by:
groupby(['b', 'a'])
In this case the order of the rows doesn't matter.
Is there any case in which groupby
does not fulfill the commutative property?
I think order for counts not matter, only after groupby get first columns/ levels in order like you have columns in list.
Order of levels after
groupby
aggregation:And columns:
If use transormation for new column with same size like original result is same: