如何在数据框中绘制两列并添加图例?

时间:2014-12-18 17:00:35

标签: python-2.7 pandas

我在熊猫密谋中有一个问题。我有一个包含4列的数据框。我如何只绘制两列并添加图例?列名是actlow,acthigh,fcstlow,fcsthigh 所以例如...我想这样做:

    pd.DataFrame.plot(['fcstlow','fcsthigh'],legend=True)

以上陈述并没有真正描绘令我讨厌的传说。感谢

1 个答案:

答案 0 :(得分:1)

import pandas as pd
import matplotlib.pyplot as plt

df = pd.DataFrame(np.random.random((4,3)), columns=list('ABC'))
for col in ('A', 'B'):
    df[col].plot(legend=True)
plt.show()

产量

enter image description here