首頁 > 軟體

Python實現Excel檔案的合併(以新冠疫情資料為例)

2022-03-19 19:01:11

注:本篇文章以新冠疫情資料檔案的合併為例。

需要相關資料的請移步:》2020-2022年新冠疫情資料

一、單目錄下面的資料合併

將2020下的所有檔案進行合併,成一個檔案:

import requests
import json
import openpyxl
import datetime
import datetime as dt
import time
import pandas as pd
import csv
from openpyxl import load_workbook
from sqlalchemy import create_engine
import math
import os
import glob
csv_list=glob.glob(r'D:Python3DataAcquisitionCOVID-192020*.csv')
print("所有資料檔案總共有%s" %len(csv_list))
for i in csv_list:
    fr=open(i,"rb").read() #除了第一個資料檔案外,其他不讀取表頭
    with open('../output/covid19temp0314.csv','ab') as f:
        f.write(fr)
    f.close()
print('資料合成完畢!')

合併後的資料:

二、使用函數進行資料合併

## 02 使用函數進行資料合併
import os
import pandas as pd 
# 定義函數(具有遞迴功能)
def mergeFile(parent,path="",pathdeep=0,filelist=[],csvdatadf=pd.DataFrame(),csvdata=pd.DataFrame()):
    fileAbsPath=os.path.join(parent,path)
    if os.path.isdir(fileAbsPath)==True:
        if(pathdeep!=0 and ('.ipynb_checkpoints' not in str(fileAbsPath))): # =0代表沒有下一層目錄
            print('--'+path)
        for filename2 in os.listdir(fileAbsPath):
            mergeFile(fileAbsPath,filename2,pathdeep=pathdeep+1)
    else:
        if(pathdeep==2 and path.endswith(".csv") and os.path.getsize(parent+'/'+path)>0):
            filelist.append(parent+'/'+path)
    return filelist

# D:Python3DataAcquisitionCOVID-19
path=input("請輸入資料檔案所在目錄:")
filelist=mergeFile(path)

filelist

csvdata=pd.DataFrame()
csvdatadf=pd.DataFrame()

for m in filelist:
    csvdata=pd.read_csv(m,encoding='utf-8-sig')
    csvdatadf=csvdatadf.append(csvdata)
# 由於2023年的資料還沒有,所以不合並

(* ̄(oo) ̄)注: 這個的等待時間應該會比較長,因為一共有一百九十多萬條資料。

將合併後的資料進行儲存:

csvdatadf.to_csv("covid190314.csv",index=None,encoding='utf-8-sig')
csvdatadf=pd.read_csv("covid190314.csv",encoding='utf-8-sig')
csvdatadf.info()

讀取新冠疫情在2020/0101之前的資料:

beforedf=pd.read_csv(r'D:Python3DataAcquisitionCOVID-19before20201111.csv',encoding='utf-8-sig')
beforedf.info()

將兩組資料合併:

tempalldf=beforedf.append(csvdatadf)
tempalldf.head()

三、處理港澳臺資料

如圖所示:要將Country_Region從Hong Kong變成China。澳門和臺灣也是如此:

查詢有關臺灣的資料:

beforedf.loc[beforedf['Country/Region']=='Taiwan']
beforedf.loc[beforedf['Country/Region'].str.contains('Taiwan')]
beforedf.loc[beforedf['Country/Region'].str.contains('Taiwan'),'Province/State']='Taiwan'
beforedf.loc[beforedf['Province/State']=='Taiwan','Country/Region']='China'
beforedf.loc[beforedf['Province/State']=='Taiwan']

香港的資料處理:

beforedf.loc[beforedf['Country/Region'].str.contains('Hong Kong'),'Province/State']='Hong Kong'
beforedf.loc[beforedf['Province/State']=='Hong Kong','Country/Region']='China'
afterdf.loc[afterdf['Country_Region'].str.contains('Hong Kong'),'Province_State']='Hong Kong'
afterdf.loc[afterdf['Province_State']=='Hong Kong','Country_Region']='China'

澳門的資料處理:

beforedf.loc[beforedf['Country/Region'].str.contains('Macau'),'Province/State']='Macau'
beforedf.loc[beforedf['Province/State']=='Macau','Country/Region']='China'
afterdf.loc[afterdf['Country_Region'].str.contains('Macau'),'Province_State']='Macau'
afterdf.loc[afterdf['Province_State']=='Macau','Country_Region']='China'

最終將整理好的資料進行儲存:

beforedf.to_csv("beforedf0314.csv",index=None,encoding='utf-8-sig')
afterdf.to_csv("afterdf0314.csv",index=None,encoding='utf-8-sig')

到此這篇關於Python實現Excel檔案的合併(以新冠疫情資料為例)的文章就介紹到這了,更多相關Python合併Excel內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com