독립 변수 개수에 따라
# 회귀계수 확인 print(model.coef_) # 기울기(가중치 $$w_1$$) print(model.intercept_) # 절편(편향 $$w_0$$)
```py # 회귀계수 확인 # 독립 변수 순서 리스트 print(list(x_train[features])) print(model.coef_) print(model.intercept_) ```