使用matplotlib在同一图表上绘制pandas数据帧中的线条和条形图

时间:2017-09-06 14:47:28

标签: python pandas matplotlib

我想将温度数据绘制成一条线,以降雨数据为条。我可以在Excel中轻松完成此操作,但我更喜欢花哨的python图表以更好的方式显示它。

一些示例代码来说明问题:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline

dates = pd.date_range('20070101',periods=365)
df = pd.DataFrame(data=np.random.randint(0,50,(365,4)), columns =list('ABCD'))
df['date'] = dates
df = df[['date','A', 'B', 'C', 'D']]
df.set_index(['date'],inplace=True) #set date as the index so it will plot as x axis

这会创建一个包含四列的数据框(假设A和B是临时值,C和D是降雨量)。

我想将降雨量绘制为条形,将温度绘制为线条,但是当我尝试这样做时:

ax = df.plot(y="A", kind="bar")
df.plot(y="B", kind = "line", ax = ax)

线条图但是not the bars.

这是我尝试做的更简单的版本,但我认为它说明了问题。

编辑:

以下代码有效:

fig, ax= plt.subplots()

ax.plot_date(df.index, df.iloc[:,2], '-')

for i in range(3):
    diff = df.index[1]-df.index[0]
    spacing = diff/(1.3*len(df.columns))
    ax.bar(df.index+(-5+i)*spacing, df.iloc[:,i], 
       width=spacing/diff, label=df.columns[i]) 

plt.legend()
plt.gcf().autofmt_xdate()
plt.show() 

真的很感谢一个不太复杂的答案,因为这看起来很冗长,但似乎有效!

1 个答案:

答案 0 :(得分:1)

一种简单的方法是使用x_compat属性:

ax = df.plot(x=index, y="A", x_compat=True)  # plot lines first
df.plot(x=index, y="B", kind="bar", ax=ax)

然后您可以调整滴答频率。

帽子提示:https://stackoverflow.com/a/39907390/5276797