0

我正在 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()

任何帮助是极大的赞赏!

4

1 回答 1

1

log(0)通常对数轴永远不会从零开始,因为在 - 轴上没有“好”值x,因为log(0)==x只有x->-infinity.

于 2012-09-19T13:46:38.930 回答