목차 Matplotlib 패키지 https://matplotlib.org/stable/gallery/index 파이썬의 대표 시각화 도구 matplotlib은 plt로 많이 naming하여 사용한다. Jupyter Notebook 유저의 경우 matplotlib의 결과가 out session에 나타나는 것이 유리하므로, %matplotlib inline 옵션을 사용한다. matplotlib.pyplot : 2D 그래프 import matplotlib.pyplot as plt # Jupyter Notebook 사용시 # plt.show()를 하지 않아도 자동으로 생성되도록 만든다. # %matplotlib inline # 위의 보다는 %matplotlib inline 아래 내용으로 사용할 것을 권고한다. ..
EDA : 시각화 - matplotlib
목차 Matplotlib 패키지 https://matplotlib.org/stable/gallery/index 파이썬의 대표 시각화 도구 matplotlib은 plt로 많이 naming하여 사용한다. Jupyter Notebook 유저의 경우 matplotlib의 결과가 out session에 나타나는 것이 유리하므로, %matplotlib inline 옵션을 사용한다. matplotlib.pyplot : 2D 그래프 import matplotlib.pyplot as plt # Jupyter Notebook 사용시 # plt.show()를 하지 않아도 자동으로 생성되도록 만든다. # %matplotlib inline # 위의 보다는 %matplotlib inline 아래 내용으로 사용할 것을 권고한다. ..
2023.10.28