1. 데이터 전처리후(Pandas dataTable) Target Value 분리 import numpy as np import pandas as pd # target 확인 target = 'Target_YVALUE' # 데이터 분리 x = data.drop(target, axis=1) y = data[target] 2) Training, Test 데이터 분리 # scikit-learn을 사용한 데이터 분리 from sklearn.model_selection import train_test_split # 8:2으로 분리 x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2, random_state=2022) 3. Traing Se..