Python 3 학습 (18): python 은 Matplotlib 를 사용 하여 막대 그래프 를 그리고 그림 을 저장 합 니 다.

1234 단어 Python
우선 matplotlib 를 설치 해 야 합 니 다 (http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.plot) pip 명령 을 사용 하여 직접 설치 할 수 있 습 니 다.
Python 의 Matplotlib 를 사용 할 때 많은 작업 이 일괄 처리 되 기 때문에 중간 에 그림 을 그리고 그림 을 저장 해 야 합 니 다. 그러나 매번 그림 을 표시 하 는 것 을 원 하지 않 기 때문에 로 컬 디 렉 터 리 에 직접 저장 할 수 있 습 니 다.
구체 적 인 실시 방안 은 다음 과 같다.
import matplotlib.pyplot as plt
import numpy as np

#      
plt.xlabel('         ')
plt.ylabel('         ')
plt.title('      ')

y = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]  #   y    
first_bar = plt.bar(range(len(y)), y, color='blue')  #     ,x 0-9,y    y   ,     

#    x    
index = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
name_list = ['a0', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9']  #x   
plt.xticks(index, name_list) #  x    

#         
for data in first_bar:
    y = data.get_height()
    x = data.get_x()
    plt.text(x+0.15, y , str(y), va='bottom')  #0.15    ,      ,          

#        
#plt.show()   #       
log = datetime.datetime.now().strftime('%Y-%m-%d')
plt.savefig('./logging/%s_all_a.jpg' % log)   #     
plt.close()   #  matplotlib

좋은 웹페이지 즐겨찾기