본문 바로가기
파이썬/궁금한것

궁금) mpl(matplotlib)과 plt(matplotlib.pyplot)의 차이점?

by 한국수달보호협회장 2022. 7. 9.

 

import할때 누구는

import matplotlib as mpl

 

다른사람은

import matplotlib.pyplot as plt 로 하고, 또 어떨때는 두개 다 하기도하고.. 차이점이 뭘까해서 검색

 

 

일단 mpl.rc와 plt.rc는 같다

https://stackoverflow.com/questions/49658412/whats-the-difference-between-matplotlib-rc-and-matplotlib-pyplot-rc

 

What's the difference between matplotlib.rc and matplotlib.pyplot.rc?

I understand that in matplotlib, you can use rc or rcParams to custom the style of your plotting. However, it seems that these functions exist in two levels, like matplotlib.rc vs matplotlib.pyplot...

stackoverflow.com

 

 

https://kongdols-room.tistory.com/72

 

Matplotlib, pyplot, pylab의차이점과 코딩스타일 - matplotlib(2)

파이썬 버전 3.7 기준 matplotlib 버전 3.0.3 기준 Matplotlib, pyplot, pylab의 차이점과 코딩스타일 Matplotlib, pyplot, pylab의 차이점   Matplotlib Matplotlib는 전체를 아우르는 패키지이다.   pyplot..

kongdols-room.tistory.com