Python 의 plt 그림 함수 에 대한 상세 한 설명

1430 단어 Pythonplt
1、plt.legend

plt.legend(loc=0)#       ,     

  :

'best'   : 0, (only implemented for axes legends)(     )
'upper right' : 1,
'upper left' : 2,
'lower left' : 3,
'lower right' : 4,
'right'  : 5,
'center left' : 6,
'center right' : 7,
'lower center' : 8,
'upper center' : 9,
'center'  : 10,
2、plt.figure

plt.figure(figsize=(14, 6), dpi=80)#            

3、plt.xticks

plt.xticks(new_year)#  x      new_year,new_year     
4、plt.xlabel

plt.xlabel('year')#x   
5、plt.plot

plt.plot(number, color='blue', label="actual value")#            
6.두 그림 으로 나 누 기

fig, axes = plt.subplots(2, 1, sharex=True,figsize=(10,10))
axes[0].plot(range (len(data20)),data20,'r')
axes[1].plot(range (len(data40)),data40,'b') 
7.세로 직선 그리 기

plt.axvline(99, linestyle="dotted", linewidth=4, color='r')#99     
8.그림 저장

plt.savefig('timeseries_y.jpg')
이 파 이 썬 의 plt 에 대한 그림 함수 에 대한 상세 한 설명 은 바로 소 편 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 어 주시 고 많은 응원 부 탁 드 리 겠 습 니 다.

좋은 웹페이지 즐겨찾기