지방이의 Data Science Lab

[python] minmaxscaler 본문

Data Analysis/Python

[python] minmaxscaler

[지현] 2019. 8. 28. 20:04

from sklearn.preprocessing import MinMaxScaler
scaler = MinMaxScaler(copy=True, feature_range=(0, 1))

temp = label.iloc[:, 1:]
scaler.fit_transform(temp.values)from sklearn.preprocessing import MinMaxScaler
scaler = MinMaxScaler(copy=True, feature_range=(0, 1))

temp = 
label.iloc[:, 1:]
temp = pd.DataFrame(scaler.fit_transform(
temp.values))
temp.columns = 
label.iloc[:,1:].columns
temp=pd.concat([label['acc_id'], temp],axis = 1)
temp

'Data Analysis > Python' 카테고리의 다른 글

[python] kmeans, agglomerative clustering  (0) 2019.09.03
[python] 데이하루씩 미루기  (0) 2019.08.30
[python] 주별, 요일별로 변경  (0) 2019.08.28
[python] eda  (0) 2019.08.27
[python] 1/0  (0) 2019.08.26
Comments