我有两个不同的pandas数据框,我从中获得了以下图表:
ar_month_mean.plot(figsize=(15,5))
hist_month.plot(kind='bar', figsize=(15,5))
我想将它们结合起来以获得类似的东西:
答案 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))
如果您发布实际数据,我将上传结果数字。