gpt4 book ai didi

python - 循环遍历 excel 文件做一些事情并将它们保存到新文件夹 python pandas

转载 作者:太空宇宙 更新时间:2023-11-03 15:00:50 24 4
gpt4 key购买 nike

我在使用 for 循环时遇到了问题。我不知道发生了什么,这曾经有效,但现在它告诉我“没有要连接的对象”。

我想完成两件事。我想遍历文件夹中的所有 excel 文件。对于每个 excel 文件,我想删除 2 行标题数据(下面的代码已经这样做了)。

然后我想将每个编辑过的文件以其原始文件名保存在一个新文件夹中。而且,保存一个新文件,其中每个编辑文件的所有数据都 append 在一起。

我以为我的追加是正确的,但由于某种原因它不再工作了。

import os
import pandas as pd
import numpy as np

from pandas import Series, DataFrame

appended_data = []

path = 'C:\Test\TestRawFile'
for fn in os.listdir(path):
if os.path.isfile(fn):
# Import the excel file and call it xlsx_file
xlsx_file = pd.ExcelFile(fn)
# View the excel files sheet names
xlsx_file.sheet_names
# Load the xlsx files Data sheet as a dataframe
df = xlsx_file.parse('Sheet1',header= None)
df_NoHeader = df[2:]
data = df_NoHeader
appended_data.append(data)
appended_data = pd.concat(appended_data)

这是我目前得到的错误。

---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-46-962ccf280c0b> in <module>()
11 data = df_NoHeader
12 appended_data.append(data)
---> 13 appended_data = pd.concat(appended_data)

C:\Anaconda2\lib\site-packages\pandas\tools\merge.pyc in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy)
832 keys=keys, levels=levels, names=names,
833 verify_integrity=verify_integrity,
--> 834 copy=copy)
835 return op.get_result()
836

C:\Anaconda2\lib\site-packages\pandas\tools\merge.pyc in __init__(self, objs, axis, join, join_axes, keys, levels, names, ignore_index, verify_integrity, copy)
865
866 if len(objs) == 0:
--> 867 raise ValueError('No objects to concatenate')
868
869 if keys is None:

ValueError: No objects to concatenate

最佳答案

很可能脚本以前有效而现在无效的原因是您将其位置从 Excel 文件的文件夹中移开,因为此代码使用相对路径。尝试使用绝对路径,将文件夹路径名连接到文件名。考虑使用 os.path.join(),它甚至有助于保存到新文件夹:

dfList = []
path = 'C:\\Test\\TestRawFile'
newpath = 'C:\\Path\\To\\New\\Folder'

for fn in os.listdir(path):
# Absolute file path
file = os.path.join(path, fn)
if os.path.isfile(file):
# Import the excel file and call it xlsx_file
xlsx_file = pd.ExcelFile(file)
# View the excel files sheet names
xlsx_file.sheet_names
# Load the xlsx files Data sheet as a dataframe
df = xlsx_file.parse('Sheet1',header= None)
df_NoHeader = df[2:]
data = df_NoHeader
# Save individual dataframe
data.to_excel(os.path.join(newpath, fn))

dfList.append(data)

appended_data = pd.concat(dfList)
appended_data.to_excel(os.path.join(newpath, 'master_data.xlsx'))

关于python - 循环遍历 excel 文件做一些事情并将它们保存到新文件夹 python pandas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38041607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com