我想使用熊猫图只获得水平网格。
pandas 的集成参数只有grid=Trueor grid=False,所以我尝试使用 matplotlib pyplot,更改轴参数,特别是使用以下代码:
import pandas as pd
import matplotlib.pyplot as plt
fig = plt.figure()
ax2 = plt.subplot()
ax2.grid(axis='x')
df.plot(kind='bar',ax=ax2, fontsize=10, sort_columns=True)
plt.show(fig)
但是我没有网格,既不是水平的也不是垂直的。Pandas 会覆盖轴吗?还是我做错了什么?
慕后森
相关分类