0
我有兩個CSV文件。他們實際上有超過2萬條記錄中的每個,但這裏的一個簡化版本:Python熊貓 - 結合不同文件的列
文件1:
col1
----
1
54
744
45
65
文件2:
col2
----
sdf
322
d3
d
2
什麼是兩者結合的最快捷的方式這些最終與以下?
col1 | col2
-------------
1 | sdf
54 | 322
744 | d3
45 | d
65 | 2
我通常會使用Excel或類似的,但數據集太大,無法加載。 Pandas中有什麼可以用來實現嗎?
http://stackoverflow.com/questions/10545957/creating-pandas-data-frame-from-multiple-files – Dadep