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

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

如何將多個(gè) json 文件合并到一個(gè) json 文件 dor EDA 在 python 中?

如何將多個(gè) json 文件合并到一個(gè) json 文件 dor EDA 在 python 中?

喵喵時(shí)光機(jī) 2022-10-05 09:35:45
我正在處理2個(gè)混合json文件和收集的音頻(大約400個(gè)json文件)的文件夾,如下所示:{  "id":"c79c32e7-6665-4c5e-9458-d15930488263",  "age":"34",  "gender":"m",  "healthStatus":"healthy",  "audioFiles":[    "1585940317337_sentence_healthy_m_34_c79c32e7-6665-4c5e-9458d15930488263.wav",    "1585940317337_cough_healthy_m_34_c79c32e7-6665-4c5e-9458-d15930488263.wav",    "1585940317337_breath_healthy_m_34_c79c32e7-6665-4c5e-9458d15930488263.wav"  ]}我想檢索 ,并將它們合并到一個(gè)JSON文件中,以便在python中進(jìn)行分析。agegenderhealthStatus為此,我寫道:from pathlib import Pathimport jsondata_folder = Path("/Users/jiani/Desktop/Voicemed/#ml/cough_classification-original_experiment/new_data/meta1")read_files = glob.glob("data_folder/.json")output_list = []for f in read_files:    with open(f, "rb") as infile:        output_list.append(json.load(infile))with open("merged_file.json", "w") as outfile:    json.dump(output_list, outfile)然后我打印了,但我得到了一個(gè)空的。我已經(jīng)閱讀了一些相關(guān)的解決方案,但我仍然無(wú)法得到答案。有人可以幫助我嗎?output_list
查看完整描述

1 回答

?
梵蒂岡之花

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

試試這個(gè):


from os import listdir

from os.path import isfile, join

import json


data_folder = "full/path/to/jsons"

files = [join(data_folder,f) for f in listdir(data_folder) if isfile(join(data_folder, f)) and f.endswith(".json")]


output_list = []

for file in files:

    with open(file, "r") as f:

        output_list.append({k:v for k,v in json.load(f).items() if k in ["age","gender","healthStatus"]})


with open("merged_file.json", "w") as outfile:

    json.dump(output_list, outfile)


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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