DaSchool Study: Power Usage Prediction Winner Code Review

Study | DaSchool | Competition | Winner Code |

 

[24년 5월10일 1주차 머신러닝 정규반 금요일]

2024.05.12 23:03 751 Views language

plt.figure(figsize=(15, 6))

plt.scatter(df.index, df['Close'], s=1)
plt.xlabel('S.no')  # x축 레이블 설정
plt.ylabel('Price')  # y축 레이블 설정

Code