Answers for "matplotlib set number of decimal places"

0

matplotlib set number of decimal places

from matplotlib.ticker import FormatStrFormatter

fig, ax = plt.subplots()

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

Code answers related to "matplotlib set number of decimal places"

Browse Popular Code Answers by Language