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
Most of the time it doesn't make sense to do a bar plot and ignore the groups formed by the index, but I had an index with a bunch of long strings and just wanted to see the distribution (pretty much a histogram), so I didn't care about the index.
PR inbound.
The text was updated successfully, but these errors were encountered:
with
df = pd.Series([1, 2, 3, 4], index=['a', 'b', 'c', 'd'])
.From
df.plot(kind='bar', use_index=False)
:From
df.plot(use_index=False)
:Most of the time it doesn't make sense to do a bar plot and ignore the groups formed by the index, but I had an index with a bunch of long strings and just wanted to see the distribution (pretty much a histogram), so I didn't care about the index.
PR inbound.
The text was updated successfully, but these errors were encountered: