학습주제Matplotlib Visualization주요 학습 내용Matplotlib Visualization - scatter plot(산점도)plt.scatter(s=, c=):x, y 좌표로 이뤄진 데이터들을 점으로 표현하는 플롯s는 점 크기, c는 점 색깔을 조절하며 label이나 class에 따른 데이터 분포를 확인할 때 활용이 가능x = np.random.rand(50)y = np.random.rand(50)# 각 데이터점마다 class를 가지고 있는 경우, class를 color로도 표현할 수 있다.colors = [0]*25 + [1]*25area = x * y * 250plt.scatter(x, y, s=area, c=colors)plt.show()Matplotlib Visualizati..