I am plotting a series histogram in Pandas as follows:
df['Primary Type'].value_counts().plot(kind='bar')
Nevertheless, this series have 25 unique values and the plot draws many bars. Is it possible to group the bars with lower frequency in only one?
Thank you in advance.