我可以使用以下代码生成带有两个轴的附加图:
import matplotlib.pyplot as plt
from matplotlib.ticker import FuncFormatter
x = [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.65]
y = [0, 0.15, 0.3, 0.35, 0.4, 0.55, 0.57, 0.58]
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax2 = ax1.twiny()
def func(x, pos):
return str(2*x)
formatter = FuncFormatter(func)
ax2.xaxis.set_major_formatter(formatter)
ax1.set_ylim([0,1])
ax1.grid(b=True, which='major', color='k', linestyle='--')
ax1.plot(x, y)
plt.savefig('test.png')
但是如何使上 x 轴范围从 0 运行到 1.4?我事先不知道 x 范围,所以 1.4 是一个不应该使用的幻数。我很高兴被指向一个解释这个或重复答案的教程。我也找不到。
我有一个解决问题的方法,但这是一个 hack:
ax2.set_xlim([0,0.7])