Count plot#
A count plot shows the frequency of each category as bars — like a histogram for categorical data.
gufo.chart(df).countplot("animal").show()
Horizontal#
gufo.chart(df).countplot("animal", horizontal=True).show()
Color#
Group bars by a second categorical column.
gufo.chart(df).countplot("animal", color="owner").legend().show()