在自定義輸出資料格式時,出現了這個乙個問題。每天獲得的資料型別為字典型,具體如下:
想要的目標格式為:
於是需要自定義函式將字典型資料整理成想要的格式,**如下:
df = pd.dataframe(
)def
write_file
(df, diction)
: keyword = diction[
'keyword'
] date = diction[
'date'
] column = df.columns.values.tolist(
)if keyword not
in column:
df[keyword]
=0
df.loc[date,keyword]
= diction[
'index'
]return df
for x in data:
res = write_file(df,x)
print
(res)
#將結果寫入csv檔案中
#res.to_csv('exam.csv', encoding ='utf-8-sig' )
執行結果:
第乙個 第二個
2019-01
-01234223
2019-01
-02235224
如何將excel資料匯入mongoDB資料庫?
如何將excel資料匯入mongodb資料庫?以pitags.xlsx檔案為例,內容如下 idname tagname status minmax period default value unit description area process 38a03m vapourinlet piserv...
如何將excel資料匯入mongoDB資料庫
匯入步驟如下 步驟一 將pitags.xlsx 另存為 pitags.csv 步驟二 執行 imongoimport命令 mongoimport d jinguan c pitags type csv headerline file pitags.csv 引數說明 d 資料庫名 c collecti...
如何將Excel資料匯出到Oracle資料庫
以下的文章主要是介紹如何用sql loader將excel相關的資料匯出到oracle資料庫,其主要的目的是實現往oracle資料庫裡插入excel相關檔案中的實際應用資料,以下就是文章的具體內容的介紹。實現步驟 1 開啟microsoft excel 2000 2 檔案 f 新建 n 工作簿 3 ...