我正在尝试使用panda.ExcelWriter
在从巨大的csv文件中读取数据帧后将其编写为excel。
此代码更新了excel表,但它没有将数据附加到我想要的Excel中
import pandas as pd
reader = pd.read_csv("H:/ram/temp/1.csv", delimiter = '\t' ,chunksize = 10000, names = ['neo_user_id',
'gender',
'age_range',
'main_geolocation', # (user identifier of the client)
'interest_category_1',
'interest_category_2',
'interest_category_3',
'first_day_identifier'
], encoding="utf-8")
ew = pd.ExcelWriter('H:/ram/Formatted/SynthExport.xlsx', engine='xlsxwriter', options={'encoding':'utf-8'})
for chunks in reader:
chunks.to_excel(ew, 'Sheet1' , encoding = 'utf-8')
print len(chunks)
ew.save()
我还尝试使用data.append()
和data.to_excel
执行此结果是内存错误。因为我正在以块的形式读取数据,所以有任何方法可以将数据写入excel
我通过此代码使用它
import pandas as pd
import xlsxwriter
reader = pd.read_csv("H:/ram/user_action_export.2014.01.csv", delimiter = '\t', chunksize = 1000, names = ['day_identifier',
'user_id',
'site_id',
'device', # (user identifier of the client)
'geolocation',
'referrer',
'pageviews',
], encoding="utf-8")
startrows = 0
ew = pd.ExcelWriter('H:/ram/Formatted/ActionExport.xlsx', engine='xlsxwriter', options={'encoding':'utf-8'})
for chunks in reader:
chunks.to_excel(ew, 'Sheet1' , encoding = 'utf-8', startrow = startrows)
startrows = startrows + len(chunks)
print startrows
ew.save()
但仍然需要这么多时间
答案 0 :(得分:0)
我不知道它是否是导致主要问题的,但是您不应该在两个块之间调用save()
,因为只需拨打save()
xlsxwriter
即可关闭{{1}}文件。