Answers for "matplotlib x axis format 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

Browse Popular Code Answers by Language