溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python做數(shù)據(jù)清洗的方法

發(fā)布時間:2020-07-03 15:05:31 來源:億速云 閱讀:181 作者:清晨 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)python做數(shù)據(jù)清洗的方法,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1.數(shù)據(jù)清洗的代碼:

import pandas as pd
import numpy as np
# 創(chuàng)建空的df,保存測試數(shù)據(jù)
test_df = pd.DataFrame({'K1':['C1','C1','C2','C3','C4','C2','C1'],'K2':['A','A','B','C','D',np.NaN,np.NaN]})
# 按K1列進(jìn)行分組,組內(nèi)進(jìn)行unique操作(去除重復(fù)元素,返回元組或列表)
test_df_unique = pd.DataFrame(test_df.groupby(['K1'])['K2'].agg('unique'))
# 自定義函數(shù)判斷元組中是否含有nan
def has_nan(list):
    flag = False
    for x in list:
        if x is np.NaN:
            flag = True
            break
    return flag
# 自定義函數(shù)判斷元組中是否不含有nan
def no_nan(list):
    flag = True
    for x in list:
        if x is np.NaN:
            flag = False
            break
    return flag
# 獲取k2列含有nan的數(shù)據(jù)
test_df_unique_has_nan = test_df_unique[test_df_unique['K2'].apply(has_nan)]
# 獲取k2列不含有nan的數(shù)據(jù)
test_df_unique_no_nan = test_df_unique[test_df_unique['K2'].apply(no_nan)]
# 管理測試數(shù)據(jù),獲取源數(shù)據(jù)
test_df_get = test_df[test_df['K1'].isin(test_df_unique_has_nan.index.tolist())]
test_df_alone = test_df[test_df['K1'].isin(test_df_unique_no_nan.index.tolist())]
# 去除含nan的重復(fù)數(shù)據(jù)
test_df_get_nonan = test_df_get[~test_df_get['K2'].isna()]
# 組合數(shù)據(jù)
result = test_df_get_nonan.append(test_df_alone)
# 去重,得到最終結(jié)果
result_save = result.drop_duplicates(subset=['K1','K2'],keep='last')
# 結(jié)果落地
result_save.to_excel('C:/Users/zhen/Desktop/數(shù)據(jù)清洗之去重.xlsx')

2、測試數(shù)據(jù):

python做數(shù)據(jù)清洗的方法

3、結(jié)果:

python做數(shù)據(jù)清洗的方法

關(guān)于python做數(shù)據(jù)清洗的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI