Executing the following:
g = sns.catplot(
x="price",
y="neigh",
kind="bar",
data=top_bot)
g = g.set(title = "Mean of the top and bottom prices (euros) by neighbour")
The x
ticks are being converted to scientific notation. I would like to specify the ticks to use, and also remove the scientific notation from them. I tried several approaches already posted in ´SO´, but the problem is that neither of them worked specifically with catplot
.
Edit:
This solution doesn't solve my problem at all. For plt.ticklabel_format(style='plain', axis='y')
creates an empty plot, followed by the same plot in scientific notation. and for sns.plt.ticklabel_format(style='plain', axis='y',useOffset=False)
it outputs
AttributeError: module 'seaborn' has no attribute 'plt'