Traceback (most recent call last):
File "/Users/apple/opt/anaconda3/lib/python3.8/site-packages/IPython/core/interactiveshell.py", line 3418, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-33-0111ab023a61>", line 1, in <module>
df_ic = date_time.groupby('date').parallel_apply(day_to_month)
File "/Users/apple/opt/anaconda3/lib/python3.8/site-packages/pandarallel/pandarallel.py", line 453, in closure
results = get_workers_result(
File "/Users/apple/opt/anaconda3/lib/python3.8/site-packages/pandarallel/pandarallel.py", line 366, in get_workers_result
message_type, message = queue.get()
根据你提供的错误信息,看起来你在使用pandarallel库进行并行处理时遇到了问题。这个错误是由于pandarallel库在获取工作进程结果时出现了异常。
要解决这个问题,你可以尝试以下几个步骤: