熊猫图给出了不匹配的x轴,其中secondary_y = True

时间:2018-11-28 20:37:59

标签: python pandas matplotlib plot

我正在尝试使用df.plot()语法在同一图上绘制两个具有匹配索引的Pandas系列(一个为线,另一个为条)。但是,当我添加条形图时,线形图轴最终错误。为什么这行不通?

enter image description here

import pandas as pd
import matplotlib.pyplot as plt

plt.figure()
df = pd.Series({0.142:5,0.3643:1,0.5523:2})
df.plot(use_index=True)

df.plot(kind='bar',secondary_y=True,color='b',use_index=True)

0 个答案:

没有答案