matplotlib bar : stateless방식
골떄리는게 plot의 매개변수는 rotation이라고하면 안되고 rot라고 해야되는데, set_ylabel 매개변수는 rotation이라고해야되고 rot라고하면 안된다. 복잡하다 참.. plt.figure(figsize=(15,7)) plt.style.use('ggplot') ax = df2.plot(kind='bar', rot=0, figsize=(16,8), ylim=[0, 3500] , title='quantity by prd type, size', stacked=True) ax.set_ylabel('sales_quantity') for c in ax.containers: labels = [v.get_height() if v.get_height() > 0 else '' for v in c] ax.b..
2022. 7. 17.
★Matplotlib 매개변수 총정리 - stateless(ax.)
ax.set_title('막대그래프', color='white', loc='left') ax.legend(bbox_to_anchor=(1.15, 1), fontsize=15) ax.set_ylabel('sales_quantity', rotation=45) xticks, yticks 1) #x축 tick기준 ax.set_xticks([10, 20, 30, 40]) #x축 tick명칭변경 및 폰트크기 설정 ax.set_xticklabels(['갑', '을', '병','정'], fontsize=15) #fontsize 조절만 하는게 안됨. 리스트로 된 범위(ex:[1, 2, 3])를 적어야만 작동이 됨 2) _, ylabels = plt.yticks() _, xlabels = plt.xticks() ax.se..
2022. 7. 17.