I am using catplot from Seaborn to create this graph to compare the error rate for each x value depending on the complexity. I know that the error rate is zero in some cases hence there is no bar to represent it but is there a way to show that in the graph?
g = sns.catplot(
data=df, kind="bar",
x="x", y="incorrect_score",
alpha=.7, hue="complexity",
ci= False
)
g.despine(left=False)
g.set(ylim=(0, 0.9))
g.set_axis_labels("", "Error")
plt.show()