=
Standard Error of the Estimate
Training & Test
훈련 데이터와 테스트 데이터를 나누는 이유
Bias & Variance
from sklearn.model_selection import train_test_split
#X_train, X_test, y_train, y_test
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)
다중선형회귀모델 학습 (scikit-learn 활용)
회귀모델의 평가지표
과적합 & 과소적합
Plotly