반응형
설명은 주석으로 대신합니다.
import pandas as pd
import matplotlib.pyplot as plt
#데이터 생성
df1=pd.DataFrame({'Weight':[55,45,64,77,72],'Height':[155,165,177,187,177]})
#boxplot 생성
plt.plot(df1['Weight'],df1['Height'],color='blue',linestyle='',marker='o')
plt.xlim(50, 80) #x축 범위
plt.ylim(100, 200) #y축 범위
plt.xlabel('Weight') #x 라벨
plt.ylabel('Height') #y 라벨
plt.title("TITLE") #그래프 이름
#그래프 출력
plt.show()
출력 결과
반응형
'Matplotlib > 산점도(plot)' 카테고리의 다른 글
[파이썬 matplotlib] 그래프 종횡비 설정하기, 그래프 비율 설정하기 (0) | 2022.03.07 |
---|---|
[파이썬 matplotlib] 한 화면에 그래프 여러개 그리고 간격 설정하기 (1) | 2022.03.07 |
댓글