Matplotlib과 Seaborn은 Python 내의 라이브러리 중 하나로, 데이터의 시각화에 주로 활용 된다.Matplotlib을 위주로 작성을 해보겠다. Matplotlib 예시 코드들기본import matplotlib.pyplot as pltx = [1,2,3,4,5]y = [2,4,6,8,10]plt.plot(x,y)plt.xlabel("x-axis")plt.ylabel("y-axis")plt.title("Example")plt.show() 도구들import pandas as pddf = pd.DataFrame({ "A": [1,2,3,4,5] , "B": [5,4,3,2,1]})df.plot(x = "A", y = "B")plt.show() 스타일 설정하기df.plot(x = ..