99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀R語言:數(shù)據(jù)規(guī)范化、歸一化
R語言:數(shù)據(jù)規(guī)范化、歸一化
2017-04-29
收藏

R語言:數(shù)據(jù)規(guī)范化、歸一化

筆者寄語:規(guī)范化主要是因為數(shù)據(jù)受著單位的影響較大,需要進(jìn)行量綱化。大致有:最小-最大規(guī)范化、均值標(biāo)準(zhǔn)化、小數(shù)定標(biāo)規(guī)范化
數(shù)據(jù)中心化和標(biāo)準(zhǔn)化的意義是一樣的,為了消除量綱對數(shù)據(jù)結(jié)構(gòu)的影響。

1、最小-最大規(guī)范化——標(biāo)準(zhǔn)化
也叫離差標(biāo)準(zhǔn)化,是對原始數(shù)據(jù)的線性變換,將數(shù)據(jù)映射到[0,1]之間,與功效系數(shù)法相同。
標(biāo)準(zhǔn)化    x-min(x) / max(x)-min(x)
[plain] view plain copy
print?在CODE上查看代碼片派生到我的代碼片
    #最小-最大規(guī)范化  
    b1=(data[,1]-min(data[,1]))/(max(data[,1])-min(data[,1]))  
    b2=(data[,2]-min(data[,2]))/(max(data[,2])-min(data[,2]))  
    b3=(data[,3]-min(data[,3]))/(max(data[,3])-min(data[,3]))  
    b4=(data[,4]-min(data[,4]))/(max(data[,4])-min(data[,4]))  
    data_scatter=cbind(b1,b2,b3,b4) 
2、均值標(biāo)準(zhǔn)化法——正態(tài)化
正態(tài)標(biāo)準(zhǔn)差標(biāo)準(zhǔn)化、零均值規(guī)范化等方法,經(jīng)過處理的數(shù)據(jù)均值為0,標(biāo)準(zhǔn)差為1。公式
為:
x*=(x-均值)/標(biāo)準(zhǔn)差
因為均值受離群值影響較大,也可以將均值替換成變量的中位數(shù)。
[plain] view plain copy
print?在CODE上查看代碼片派生到我的代碼片
    #零-均值規(guī)范化  
    data_zscore=scale(data) 
3、小數(shù)定標(biāo)規(guī)范化
移動變量的小數(shù)點位置來將變量映射到[-1,1]
[plain] view plain copy
print?在CODE上查看代碼片派生到我的代碼片

    #小數(shù)定標(biāo)規(guī)范化  
    i1=ceiling(log(max(abs(data[,1])),10))#小數(shù)定標(biāo)的指數(shù)  
    c1=data[,1]/10^i1  
    i2=ceiling(log(max(abs(data[,2])),10))  
    c2=data[,2]/10^i2  
    i3=ceiling(log(max(abs(data[,3])),10))  
    c3=data[,3]/10^i3  
    i4=ceiling(log(max(abs(data[,4])),10))  
    c4=data[,4]/10^i4  
    data_dot=cbind(c1,c2,c3,c4)  
      
    #打印結(jié)果  
    options(digits = 4)#控制輸出結(jié)果的有效位數(shù)  
    data_dot 
代碼中,log(x,10)是ln(x)一樣;
options可以控制保留四位數(shù)小數(shù)
4、還原標(biāo)準(zhǔn)化的方法
[html] view plain copy
print?在CODE上查看代碼片派生到我的代碼片
    preds=norm.data*sd(data)+mean(data)#還原標(biāo)準(zhǔn)化的數(shù)據(jù) 
5、R語言中的scale函數(shù)
scale方法中的兩個參數(shù)center和scale的解釋:
1.center和scale默認(rèn)為真,即T或者TRUE
2.center為真表示數(shù)據(jù)中心化
3.scale為真表示數(shù)據(jù)標(biāo)準(zhǔn)化
中心化=源數(shù)據(jù)-均值
標(biāo)準(zhǔn)化==中心化之后的數(shù)據(jù)在除以數(shù)據(jù)集的標(biāo)準(zhǔn)差,即數(shù)據(jù)集中的各項數(shù)據(jù)減去數(shù)據(jù)集
的均值再除以數(shù)據(jù)集的標(biāo)準(zhǔn)差。
例如有數(shù)據(jù)集1, 2, 3, 6, 3,其均值為3,其標(biāo)準(zhǔn)差為1.87,那么標(biāo)準(zhǔn)化之后的數(shù)據(jù)集
為(1-3)/1.87,(2-3)/1.87,(3-3)/1.87,(6-3)/1.87,(3-3)/1.87,即:-1.069,-
0.535,0,1.604,0
那么以下幾種情況是啥意思:
[plain] view plain copy
print?在CODE上查看代碼片派生到我的代碼片
    scale(x)=scale(x,center=T,scale=T),默認(rèn)設(shè)置  
    scale(x,center=F,scale=T)代表不進(jìn)行中心化,直接做標(biāo)準(zhǔn)化;  
    scale(x,center=T,scale=F)代表中心化  
    scale(x,center=F,scale=F)代表什么不做,是原來的數(shù)據(jù)列。 
那么與apply族聯(lián)用

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時表示是新驗證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }