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

熱線電話:13121318867

登錄
首頁精彩閱讀R語言-統(tǒng)計學(xué) 描述性統(tǒng)計
R語言-統(tǒng)計學(xué) 描述性統(tǒng)計
2018-02-26
收藏

R語言-統(tǒng)計學(xué) 描述性統(tǒng)計

描述定量數(shù)據(jù)的數(shù)值方法:中心趨勢度量   變異的度量   相對位置的度量。

1.中心趨勢度量 : 算數(shù)平均 中位數(shù)   眾數(shù)

1.1  在R中計算平均數(shù)的函數(shù)  mean( )
常規(guī)的mean() 函數(shù)用法                
mean(x, trim = 0, na.rm = FALSE, ...) 
參數(shù)說明: x 對象名稱
trim  過濾掉異常值 ,按照距離平均值的遠近距離排除,如對象中含有10個數(shù)據(jù),排除最高和最低值,trim=0.2
na.rm  默認為F   表示是否計入空值
實例1: 做一個稍微復(fù)雜點的操作,用r做數(shù)據(jù)透視表并把結(jié)果轉(zhuǎn)換為matrix ,對行列求和。(僅娛樂,無實用價值)

         demo <- mtcars[1:6,] # 調(diào)用R自帶函數(shù)集,并去前6行
         toushi <- aggregate(mtcars[,5:6] ,by = list(cyl = mtcars$cyl),sum) # 數(shù)據(jù)透視表求和
         toushi <- as.matrix(toushi)  # 將結(jié)果的數(shù)據(jù)框轉(zhuǎn)化成矩陣
         #(toushi <- apply(toushi,c(1,2),sum))
         (rowSums(toushi))  # 行求和
         (colSums(toushi))  # 列求和
         toushi <- rbind(toushi,rowSums(toushi))  #將行求和結(jié)果并入最后一行
         toushi <- cbind(toushi,colSums(toushi))  #將列求和結(jié)果并入最后一列
  1.2 中位數(shù)和眾數(shù) 
        對于偏度極大的數(shù)據(jù)集,中位數(shù)能更好的描述數(shù)據(jù)分布的中心。
       很少用眾數(shù)作為數(shù)據(jù)數(shù)據(jù)趨勢的度量,只有當(dāng)對y出現(xiàn)的相對頻率感興趣時,才會考慮到眾數(shù)。
       R實現(xiàn)中位數(shù)  : 
        median(x, na.rm = FALSE)
       R中沒有直接插找眾數(shù)的命令
       which.max(table(x))
2.變異的度量 : 極差  方差  標準差
    2.1 .極差 = max()- min()
    2.2  方差標準差
       對一個有n個測量值的有限總體來說,方差計算公式的分母為n。關(guān)于樣本方差和總體方差分母的差異原因,可自行百度搜索。
       R語言計算方差的函數(shù): var(x,)
       w<-c(75.0,64.0,47.4,66.9,62.2,62.2,58.7,63,5,66.6,64.0,57.0,69.0,56.9,50.0,72.0)
       var(w)
       # 附加指數(shù)點:標準差的兩個有用法則:經(jīng)驗法則 和 切比雪夫法則,共同說明一個問題,對于任意大于1的正數(shù)k,至少有(1-1/k^2)的測試值落在平均值的k個標準值范圍內(nèi)。
3.變異的度量 : 百分位數(shù)  Z得分
 3.1 .最常見的四分位數(shù)(一般從大到?。?br />       quantile(x, probs = seq(0, 1, 0.25), na.rm = FALSE,names = TRUE, type = 7, ...)

數(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(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進行初始化 // 參數(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ù)器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 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); }