2017-10-17 22 views

答えて

1

あなたは棒グラフのマージンを避けるために-.5len(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() 

enter image description here

関連する問題