Python 자동화 작업 구현 그림 그리 기

접 는 선 그림,기둥 모양 그림,떡 그림 은 데이터 전시 에 사용 되 고 더욱 직관 적 인 분석 데 이 터 를 말한다.그 려 진 효과 그림 은 다음 과 같 습 니 다.



코드 는 간단 합 니 다.다음 과 같 습 니 다.

import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif']=['SimHei'] #          

#   
date=['2018/7/21','2018/7/22','2018/7/23','2018/7/24','2018/7/25','2018/7/26','2018/7/27','2018/7/28','2018/7/29','2018/7/30','2018/7/31']
hebei= [69,32,35,32,87,88,98,65,66,89,74]
shanxi=[13,45,67,89,32,55,66,32,53,66,89]

#   
plt.plot(date,hebei,color='red',label='  ')
plt.plot(date,shanxi,color='blue',label='  ')
plt.xlabel('  ')
plt.ylabel('  ')
plt.title('   ')
plt.xticks(rotation=45) #  45 
plt.legend()
plt.show()

#   
plt.bar(date,hebei,color='red',label='  ')
plt.bar(date,shanxi,color='blue',label='  ')
plt.xlabel('  ')
plt.ylabel('  ')
plt.title('   ')
plt.xticks(rotation=45) #  45 
plt.legend()
plt.show()

#  
number=[777,444]
province=['  ','  ']
colors=['red','blue']
plt.pie(x=number,labels=province,colors=colors)
plt.legend()
plt.show()
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기