如何在python

时间:2015-08-03 14:45:41

标签: python matplotlib graph

我有两个不同的pandas数据框,我从中获得了以下图表:

ar_month_mean.plot(figsize=(15,5))

enter image description here

hist_month.plot(kind='bar', figsize=(15,5))

enter image description here

我想将它们结合起来以获得类似的东西:

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以将ax传递给绘图方法,以便在同一个ax中包含多个绘图。否则,每个新图将位于新轴中:

import matplotlib.pyplot as plt
f = plt.figure(figsize=(15,5))
ax = plt.gca()
ar_month_mean.plot(ax=ax, figsize=(15,5))
hist_month.plot(ax=ax, kind='bar', figsize=(15,5))

如果您发布实际数据,我将上传结果数字。