在Pandas Chart中显示多值列可以通过使用多个y轴来实现。下面是一种实现方法:
import pandas as pd
data = {'x': [1, 2, 3, 4, 5],
'y1': [10, 20, 30, 40, 50],
'y2': [5, 15, 25, 35, 45]}
df = pd.DataFrame(data)
ax = df.plot(x='x', y='y1', legend=False)
ax2 = ax.twinx()
df.plot(x='x', y='y2', ax=ax2, legend=False, color='r')
ax.figure.legend(['y1', 'y2'])
ax.set_ylabel('y1')
ax2.set_ylabel('y2')
完整的代码如下所示:
import pandas as pd
data = {'x': [1, 2, 3, 4, 5],
'y1': [10, 20, 30, 40, 50],
'y2': [5, 15, 25, 35, 45]}
df = pd.DataFrame(data)
ax = df.plot(x='x', y='y1', legend=False)
ax2 = ax.twinx()
df.plot(x='x', y='y2', ax=ax2, legend=False, color='r')
ax.figure.legend(['y1', 'y2'])
ax.set_ylabel('y1')
ax2.set_ylabel('y2')
这样,你就可以在Pandas Chart中显示多值列了。
领取专属 10元无门槛券
手把手带您无忧上云