我正在创建一个简单的条形图:
ax = lasso_output_df2.plot(kind='bar', title ="Spain Coefficient Variables [alpha_10]", figsize=(15, 10), legend=False, fontsize=12)
ax.set_xticklabels(lasso_output_df2.Features)
ax.set_axis_bgcolor('white')
我需要包含哪些元素来指定图表的轮廓?
我尝试过,edgecolor = 'black'
但是这改变了条形的轮廓,而不是情节。