You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just found out that if i change ax1 = df.groupby('cats')['data'].hist(bins=20, normed=True, subplots=True) to ax1 = df.groupby('cats').hist(bins=20, normed=True, subplots=True) seperate plots are generated, but it woult be nice here to define, that each group is plotted as a subplot..(or as a row of a subplot)
I'd like to use the kwarg
subplots=True
when plotting histogramms of groupbyMy code:
Would be nice to have this feature in pandas (same would be nice to have in groupby.plot #12450 )
My pandas:
The text was updated successfully, but these errors were encountered: