📜  坐标轴上的重要数字图 matplotlib - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:53.041000             🧑  作者: Mango

代码示例1
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import FormatStrFormatter

fig, ax = plt.subplots()

ax.yaxis.set_major_formatter(FormatStrFormatter('%g'))
ax.yaxis.set_ticks(np.arange(-2, 2, 0.25))

x = np.arange(-1, 1, 0.1)
plt.plot(x, x**2)
plt.show()