이 장에서 사용할 matplotlib은 모듈, 패키지, 라이브러리 중에 무엇일까요?
import matplotlib
help(matplotlib)
실행결과
Help on package matplotlib:
NAME
matplotlib - This is an object-oriented plotting library.
…
첫 줄을 보면 matplotlib은 패키지라고 나옵니다. 그런데 바로 아래 NAME 항목에는 ‘matplotlib은 그래프를 그리는 객체 지향 라이브러리’라고 나옵니다. 여기서도 패키지와 라이브러리를 혼용하고 있습니다. 이 장에서는 matplotlib 중 pyplot을 주로 사용하니 pyplot도 살펴보죠.
import matplotlib
help(matplotlib.pyplot)
실행결과
Help on module matplotlib.pyplot in matplotlib:
…
matplotlib 안에 있는 모듈 matplotlib.pyplot이라고 나오는 걸로 보아 pyplot은 모듈임을 알 수 있습니다.