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

熱線電話:13121318867

登錄
首頁大數(shù)據(jù)時代python數(shù)據(jù)清洗時,經(jīng)常用到的工具有哪幾種?
python數(shù)據(jù)清洗時,經(jīng)常用到的工具有哪幾種?
2020-07-06
收藏

數(shù)據(jù)清洗是整個數(shù)據(jù)分析過程的第一步,也是整個數(shù)據(jù)分析項目中最耗費時間的一步,下面小編整理了幾種常用的python數(shù)據(jù)清洗工具,希望對大家有所幫助。

目前在python中, numpypandas是最主流的數(shù)據(jù)清洗工具,Numpy中的向量化運算使得數(shù)據(jù)處理變得高效,Pandas提供了大量數(shù)據(jù)清洗的高效方法,在python數(shù)據(jù)清洗中,盡可能多的使用numpypandas這兩種工具,提高數(shù)據(jù)清洗的效率。

一、Numpy

1 Numpy常用數(shù)據(jù)結(jié)構(gòu)

Numpy中常用的數(shù)據(jù)結(jié)構(gòu)是ndarray格式

使用array函數(shù)創(chuàng)建,語法格式為array(列表或元組)

可以使用其他函數(shù)例如arange、linspace、zeros等創(chuàng)建

2.Numpy常用數(shù)據(jù)清洗函數(shù)

排序函數(shù)

數(shù)據(jù)的搜索

sort函數(shù): 從小到大進行排序

argsort函數(shù): 返回的是數(shù)據(jù)中, 從小到大的索引值

二、Pandas

1.Pandas常用數(shù)據(jù)結(jié)構(gòu)series和方法

?通過pandas.Series來創(chuàng)建Series數(shù)據(jù)結(jié)構(gòu)

?pandas.Series(data,index,dtype,name)

?上述參數(shù)中,data可以為列表,array或者dict

?上述參數(shù)中, index表示索引,必須與數(shù)據(jù)同長度,name代表對象的名稱

2.series和dataframe常用方法

values:返回對象所有元素的值

index:返回行索引

dtypes:返回元素的數(shù)據(jù)類型

shape:返回對象數(shù)據(jù)形狀

ndim:返回對象的維度

size:返回對象的個數(shù)

columns:返回列標(biāo)簽(只針對dataframe數(shù)據(jù)結(jié)構(gòu))

數(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); }