반응형
[파이썬 matplotlib]
산점도 (여러데이터)
여러 데이터의 산점도를 하나의 그래프에 그리는 방법입니다. scatter 메소드를 여러번 적용해주면 됩니다. gray scale로 구분하겠습니다.
import numpy as np
import matplotlib.pyplot as plt
X1 = np.random.randn(100)
Y1 = np.random.randn(100)
X2 = np.random.randn(100)
Y2 = np.random.randn(100)
plt.scatter(X1,Y1,color='0.25')
plt.scatter(X2,Y2,color='0.75')
plt.show()
반응형
'Matplotlib > 산점도(scatter)' 카테고리의 다른 글
[파이썬 matplotlib] 산점도 마커 종류 설정 (0) | 2020.11.17 |
---|---|
[파이썬 matplotlib] 산점도 모서리색 (0) | 2020.11.17 |
[파이썬 matplotlib] 산점도 색변경 (gray scale) (0) | 2020.11.16 |
[파이썬 matplotlib] 산점도 색변경 (0) | 2020.11.16 |
[파이썬 matplotlib] 산점도 그래프 (scatter 함수 이용) (0) | 2020.11.13 |
댓글