我有2个形状为(70661802,3)和(8264276,14)的数据框。我必须基于列合并它们,但由于出现内存错误而无法这样做。
MemoryError跟踪(最近一次通话最近)
我的机器上的RAM是8GB,而python运行在64位上(已通过platform.architecture检查)。
由于出现内存错误,无法尝试其他任何操作。
%time df_raw_1 = df_raw_train.merge(df_raw_user,left_on ='node1_id',right_on ='node_id',how ='inner',后缀=('','_node1'))