ipython数据帧绘图设置颜色参数?

时间:2014-01-02 04:20:19

标签: pandas matplotlib ipython

我正在尝试直接使用pandas DataFrame绘图,因为索引列会自动更改为x轴。

但是,我真的不知道如何使用DataFrame设置颜色条件。即

df1 = pd.DataFrame(b-z,index=frame1.index,columns=['delta'])
colors = np.where(df1.delta>0,'g','r')
df1.plot(ax=axes[0],marker='o',color=colors)

我不知道如何让它发挥作用

1 个答案:

答案 0 :(得分:0)

什么是b?什么是z?根据您需要拨打plot的两个电话的声音。

df1[df1.delta > 0].plot(ax=axes[0], marker='o', color='g')
df1[df1.delta <= 0].plot(ax=axes[0], marker='o', color='r')