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,)