0
我想使用這個確切的命令我的代碼合併數據幀存儲效率問題大熊貓
merging files based on column coordinates of two files in python
,但我的系統也只是凍結(可能是因爲我有〜315,000線),沒有更好的辦法做這個?下面 是我的代碼:
new_df = df.merge(gene_df, how='outer', on ='chrm')
new_df = new_df[(new_df.start_x>=df.start_y) & (df.end_x<=df.end_y)]
print (new_df.head(10))
任何替代方法?我的大部分上游和下游代碼都是熊貓.. – sbradbio
你的發佈代碼是否是一個錯字,它應該在後綴'_x','_y'處出現錯誤? – Parfait