Python如何设置对数log坐标系的range

Python如何设置对数log坐标系的range

Python如何设置对数log坐标系的range_第1张图片

fig, ax = plt.subplots()
sns.lineplot(data=df, x="k", y="pk")
ax.set_xscale("log")
ax.set_yscale("log")
ax.set_xlim(3, 1e2)
ax.set_ylim(4e-3, 1e0)
plt.show()

你可能感兴趣的:(python,开发语言)