I have a simple graph with the object axs
for axes. Before I change the Y-axis to log-scale the format is just regular numbers.
After I change the Y-axis to a log scale using: axs.set_yscale('log')
... Then try to change the numbers back with
axs.set_yticklabels(['{:,}'.format(int(x)) for x in axs.get_yticks().tolist()])
It doesn't work... the labels still remain in scientific notation.
I just want the regular numbers back.
I'm using:
fig = plt.figure(figsize=(30, 15))
axs = fig.add_subplot(1, 1, 1)
axs.plot()