03장 데이터 시각화 라이브러리, 맷플롯립
import matplotlib.pyplot as pltmatplotlib 모듈의 하위 모듈인 pyplot을 import하면 그래프 작성에 필요한 기능을 일일이 호출하지 않아도 된다.plt.xlabel('xlabel')plt.ylabel('ylabel')plt.legend()plt.xlim([0,5])plt.ylim([0, 15])plt.xscale('linear')plt.yscale('log')맷플롯립으로 축 레이블, 범례, 축 범위, 축 스케일을 커스터마이징 할 수 있다.plt.plot([1, 2, 3], [4, 4, 4], '-', label='solid')plt.plot([1, 2, 3], [2, 2, 2], linestyle='dotted', label='dotted')plt.plot([4, 5..
2025. 1. 25.