본문 바로가기
파이썬. 데이터분석/Matplotlib

matplotlib : 산점도 scatter

by 한국수달보호협회장 2022. 7. 14.

 

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')