That is the difference between groupby(\"x\").count
and groupby(\"x\").size
in pandas ?
Does size just exclude nil ?
When we are dealing with normal dataframes then only difference will be an inclusion of NAN values, means count does not include NAN values while counting rows.
But if we are using these functions with the groupby
then, to get the correct results by count()
we have to associate any numeric field with the groupby
to get the exact number of groups where for size()
there is no need for this type of association.