scatter 프로토타입
sizes = df['학년']
plt.figure(figsize=(10,10))
plt.scatter(df['영어'], df['수학'], s= sizes * 500, c = df['학년'], cmap='Set3', alpha=0.9)
plt.xlabel('영어 점수')
plt.ylabel('수학 점수')
plt.colorbar(ticks=[1, 2, 3], label='학년', shrink=0.8, orientation ='horizontal')
'파이썬. 데이터분석 > Matplotlib' 카테고리의 다른 글
matplotlib : ax. plt. 문법차이 (0) | 2022.07.16 |
---|---|
matplotlib : plt.subplot 여러 그래프 동시에 보여주기 2 (0) | 2022.07.14 |
matplotlib : 원그래프(파이그래프) (0) | 2022.07.13 |
matplotlib : 다중 막대 그래프 (0) | 2022.07.13 |
matplotlib : 누적 막대그래프 (0) | 2022.07.12 |