附加在for循环中生成的熊猫数据框

附加在for循环中生成的熊猫数据框,第1张

附加在for循环中生成的熊猫数据

使用

pd.concat
以数据帧列表合并成一个大的数据帧。

appended_data = []for infile in glob.glob("*.xlsx"):    data = pandas.read_excel(infile)    # store Dataframe in list    appended_data.append(data)# see pd.concat documentation for more infoappended_data = pd.concat(appended_data)# write Dataframe to an excel sheet appended_data.to_excel('appended.xlsx')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5559472.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存