The attached image shows the image of the seaborn plot. The values shown on the top of the graph are already rounded in the dataframe but the plot does not show the rounded values.
How can I do that?
Rounded with:
data["Marks (%)"] = data["Marks (%)"].apply(lambda x: round(x,1))
Seaborn code to showcase these values on top of the bar:
for i in ax.containers:
ax.bar_label(i, fontsize = 14)