[Pandas] Numpy - matplotlib, seaborn를 이용한 자료 시각화
lineplot # plt x = np.array([1, 2, 3, 4, 5, 6]) y = np.array([1, 2, 3, 4, 5, 6]) #title. x label, y label, 범례 plt.plot(x,y, 'ms--',label='low') #스타일은 색깔, 마커, 선종류 순서로 지정 plt.plot(x,y*2, label = 'high') plt.legend() plt.title("test") plt.xlabel("xlabel") plt.ylabel("ylabel") plt.show() #그래프만 보여줌 우리가 알고 있는 그 선 그래프이다. 코드는 위와 같이 들어가며 스타일은 색깔, 마커, 선종류 순서로 지정된다. histogram plt.hist(iris['sepal_width']) ..
2022. 11. 1.