Annotate bars without showing 0 values

241 Views Asked by At

Seaborn Image

I do not want to see the 0s being displayed in the countplot. Is there a way to eliminate showing just 0s from the labels on the graph?

ax = sbn.countplot(data=df,x='link',hue='Status', width=0.2)

for container in ax.containers:
  ax.bar_label(container,)
0

There are 0 best solutions below