第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

需要在循環(huán)的幫助下對(duì)從 url 導(dǎo)入的多個(gè) csv (1500 x 20) 文件的第一列執(zhí)行列合并

需要在循環(huán)的幫助下對(duì)從 url 導(dǎo)入的多個(gè) csv (1500 x 20) 文件的第一列執(zhí)行列合并

UYOU 2023-03-16 09:55:36
對(duì)如何存儲(chǔ)、訪問和 mege dfs.c df 列具有相同的標(biāo)題名稱感到困惑。代碼如下:for s in range(40):    # a func which returns historical business dates     ago_Ybd_0=     (date_by_adding_business_days(datetime.date(2020,7,17),s,Holiday))     year_0, month_0, day_0 = ago_Ybd_0.strftime("%Y-%b-%d").split("-")     month_0 = month_0.upper()    #import / unzip/ read file    !wget     'https://www.ukp.com/content/historical/{year_0}/{month_0}/cm{day_0}     {month_0}{year_0}kp.csv.zip'     !unzip 'uk{day_0}{month_0}{year_0}kp.csv.zip'    a_0=f'uk{day_0}{month_0}{year_0}kp.csv.zip'      # problem area     c=f'uk{day_0}{month_0}{year_0}'     c  = pd.read_csv(a_0,engine='python')  # merge eod_a=c.merge(c,on='SYSTEM',how='left')
查看完整描述

1 回答

?
慕蓋茨4494581

TA貢獻(xiàn)1850條經(jīng)驗(yàn) 獲得超11個(gè)贊

考慮構(gòu)建一個(gè)數(shù)據(jù)框列表,然后調(diào)用concat水平合并:

def get_data(s):

    # a func which returns historical business dates 

    ago_Ybd_0 = (date_by_adding_business_days(datetime.date(2020, 7, 17), s, Holiday))

    year_0, month_0, day_0 = ago_Ybd_0.strftime("%Y-%b-%d").split("-")

    month_0 = month_0.upper()


    #import / unzip/ read file

    !wget 

    'https://www.ukp.com/content/historical/{year_0}/{month_0}/cm{day_0} 

    {month_0}{year_0}kp.csv.zip' 

    !unzip 'uk{day_0}{month_0}{year_0}kp.csv.zip'

    a_0=f'uk{day_0}{month_0}{year_0}kp.csv.zip' 


    # RETURN DATA FRAME, SETTING SYSTEM AS INDEX

    return pd.read_csv(a_0, engine='python', index_col='SYSTEM')


# BUILD LIST OF DFs VIA LIST COMPREHENSION

df_list = [get_data(s) for s in range(40)]


# BIND ALL DFs BY COLUMNS INTO SINGLE DF

final_df = pd.concat(df_list, axis='columns')


查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 1 回答
  • 0 關(guān)注
  • 97 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)