excel에 기둥 모양 그림 삽입

2374 단어
 1 import   pandas
 2 from  matplotlib import pyplot
 3 excel=pandas.read_excel(' .xlsx')
 4 excel.sort_values(by='score',ascending=False,inplace=True)
 5 print(excel)
 6 
 7 # 
 8 #excel.plot.bar(x='name',y='score',color='orange',title='score')
 9 pyplot.bar(excel.name,excel.score,color='orange')
10 pyplot.xticks(excel.name,rotation=45)
11 pyplot.yticks(excel.score,rotation=45)
12 
13 
14 pyplot.tight_layout()    # 
15 pyplot.show()

좋은 웹페이지 즐겨찾기