标签: python matplotlib
如何从Matplotlib条形图中删除边距?
答案 0 :(得分:3)
您可以将轴的限制设置为-.5和len(df)-.5,以避免条形图的边距。
-.5
len(df)-.5
import matplotlib.pyplot as plt import pandas as pd plt.rcParams["patch.force_edgecolor"] = True df = pd.DataFrame([1,2]) df.plot.bar(width=1) plt.xlim(-0.5,len(df)-.5) plt.show()