0

我可以使用以下代码生成带有两个轴的附加图:

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])

在此处输入图像描述

4

1 回答 1

1

重新标记蜱的主要目标是什么?

def func(x, pos):
    return str(2*x)
formatter = FuncFormatter(func)
ax2.xaxis.set_major_formatter(formatter)

似乎省略它会给你正确的答案:

import matplotlib.pyplot as plt

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()
ax1.set_ylim([0,1])
ax1.grid(b=True, which='major', color='k', linestyle='--')
ax1.plot(x, y)
ax2.set_xlim(0,2*ax1.get_xlim()[1])
plt.show()
于 2015-02-13T03:39:35.023 回答