作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
import numpy as np
import pandas as pd
from multiprocessing import Pool
import threading
#Load the data
df = pd.read_csv('crsp_short.csv', low_memory=False)
def funk(date):
...
# for each date in df.date.unique() do stuff which gives sample dataframe
# as an output
#then write it to file
sample.to_csv('crsp_full.csv', mode='a')
def evaluation(f_list):
with futures.ProcessPoolExecutor() as pool:
return pool.map(funk, f_list)
# list_s is a list of dates I want to calculate function funk for
evaluation(list_s)
我得到一个 csv 文件作为输出,其中一些行乱七八糟,因为 python 同时从不同的线程写入一些片段。我想我需要使用队列,但我无法修改代码以使其工作。想法如何去做?否则需要很长时间才能得到结果。
最佳答案
这解决了问题(Pool 为您排好队)
Python: Writing to a single file with queue while using multiprocessing Pool
我的代码版本没有弄乱输出的 csv 文件:
import numpy as np
import pandas as pd
from multiprocessing import Pool
import threading
#Load the data
df = pd.read_csv('crsp_short.csv', low_memory=False)
def funk(date):
...
# for each date in df.date.unique() do stuff which gives sample dataframe
# as an output
return sample
# list_s is a list of dates I want to calculate function funk for
def mp_handler():
# 28 is a number of processes I want to run
p = multiprocessing.Pool(28)
for result in p.imap(funk, list_s):
result.to_csv('crsp_full.csv', mode='a')
if __name__=='__main__':
mp_handler()
关于python - 使用多处理从数据帧写入 csv 而不会弄乱输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53950320/
我是一名优秀的程序员,十分优秀!