我正在 matplotlib 中生成散点图。如果我使用线性刻度,一切正常。
但由于我主要对较低的值感兴趣,所以我想我会使用对数缩放。但是,即使我已将 x 轴限制明确设置为 (0,1),轴从 0.1 开始,所以我错过了低于此的所有内容!
为什么对数轴不从零开始,我该如何强制它?
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0,1,100)
y = np.random.randint(1000, size=100)
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.scatter(x, y)
ax.set_xlim(0,1.2)
ax.set_ylim(0,1000)
ax.set_yscale('log')
ax.set_xscale('log')
ax.yaxis.set_major_formatter(plt.FormatStrFormatter('%1.0f'))
ax.xaxis.set_major_formatter(plt.FormatStrFormatter('%.1f'))
ax.xaxis.set_minor_formatter(plt.FormatStrFormatter('%.1f'))
# this red line at x = 0.1
ax.axvline(x=0.1,color='r')
plt.show()
任何帮助是极大的赞赏!