Answers for "how to plot 2 decimal values in axis python"

0

how to plot 2 decimal values in axis python

from matplotlib.ticker import FormatStrFormatter

fig, ax = plt.subplots()

ax.yaxis.set_major_formatter(FormatStrFormatter('%.2f'))
Posted by: Guest on April-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language