以下通過sklearn的preprocessing模組
from sklearn.preprocessing import standardscaler
變換後各維特徵有0均值,單位方差。也叫z-score規範化(零均值規範化)。計算方式是將特徵值減去均值,除以標準差。
1
sklearn.preprocessing一般會把train和test集放在一起做標準化,或者在train集上做標準化後,用同樣的標準化器去標準化test集,此時可以用scaler.scale(x)
123
scaler = sklearn.preprocessing實際應用中,需要做特徵標準化的常見情景:svm.standardscaler().fit
(train)
scaler.transform
(train)
scaler.transform
(test)
上述**還可以這樣寫:
最小-最大規範化對原始資料進行線性變換,變換到[0,1]區間(也可以是其他固定最小最大值的區間)
12
min_max_scaler = sklearn.preprocessing.minmaxscaler()
min_max_scaler.fit_transform
(x_train)
規範化是將不同變化範圍的值對映到相同的固定範圍,常見的是[0,1],此時也稱為歸一化。《機器學習》周志華將每個樣本變換成unit norm。
12
x = [[ 1, -1, 2],[ 2, 0, 0], [ 0, 1, -1]]得到:sklearn.preprocessing.normalize(x, norm='l2')
1
array([[ 0.40, -0.40, 0.81], [ 1, 0, 0], [ 0, 0.70, -0.70]])可以發現對於每乙個樣本都有,0.4^2+0.4^2+0.81^2=1,這就是l2 norm,變換後每個樣本的各維特徵的平方和為1。類似地,l1 norm則是變換後每個樣本的各維特徵的絕對值和為1。還有max norm,則是將每個樣本的各維特徵除以該樣本各維特徵的最大值。
在度量樣本之間相似性時,如果使用的是二次型kernel,需要做normalization
給定閾值,將特徵轉換為0/1
12
binarizer = sklearn.preprocessing.binarizer(threshold=1.1)
binarizer.transform
(x)
1
lb = sklearn.preprocessing有時候特徵是類別型的,而一些演算法的輸入必須是數值型,此時需要對其編碼。.labelbinarizer()
123
enc = preprocessing.onehotencoder()上面這個例子,第一維特徵有兩種值0和1,用兩位去編碼。第二維用三位,第三維用四位。enc.fit([[0, 0, 3], [1, 1, 0], [0, 2, 1], [1, 0, 2]])
enc.transform([[0, 1, 3]]).toarray() #array([[ 1., 0., 0., 1., 0., 0., 0., 0., 1.]])
另一種編碼方式
[python]view plain
copy
newdf=pd.get_dummies(df,columns=[
"gender"
,"title"
],dummy_na=
true
)
123456
le = sklearn.preprocessing.labelencoder()
le.fit
([1, 2, 2, 6])
le.transform
([1, 1, 2, 6])
#array
([0, 0, 1, 2])
#非數值型轉化為數值型
le.fit
(["paris", "paris", "tokyo", "amsterdam"])
le.transform
(["tokyo", "tokyo", "paris"])
#array
([2, 2, 1])
1
sklearn.preprocessing這個其實涉及到特徵工程了,多項式特徵/交叉特徵。.robust_scale
12
poly = sklearn.preprocessing原始特徵:.polynomialfeatures(2)
poly.fit_transform
(x)
轉化後:
Python資料預處理
1.匯入資料檔案 excel,csv,資料庫檔案等 df read table file,names 列名1,列名2,sep encoding file是檔案路徑,names預設為檔案的第一行為列名,sep為分隔符,預設為空,表示預設匯入為一列 encoding設定檔案編碼,匯入中文時,需設定utf...
python資料預處理
scikit learn 提供的binarizer能夠將資料二元化 from sklearn.preprocessing import binarizer x 1,2,3,4,5 5,4,3,2,1 3,3,3,3,3 1,1,1,1,1 print before transform x binar...
python資料預處理
import pandas as pd 缺失值處理 df pd.read excel users caizhengjie desktop a.xlsx print df 直接呼叫info方法就會返回每一列的缺失值 print df.info print isnull方法判斷哪個是缺失值 print ...