2
R的plyr函數有: rbind.fill()這是一種附加不等數據列數據幀的方法。R rbind.fill等效於Python Pandas
python/pandas DataFrame有沒有類似的函數?
R的plyr函數有: rbind.fill()這是一種附加不等數據列數據幀的方法。R rbind.fill等效於Python Pandas
python/pandas DataFrame有沒有類似的函數?
您正在尋找的功能concat
:
import pandas as pd
df1 = pd.DataFrame({'col1':['a','b'],'col2':[33,44]})
df2 = pd.DataFrame({'col3':['dog'],'col2':[32], 'col4':[1]})
In [8]: pd.concat([df1, df2])
Out[8]:
col1 col2 col3 col4
0 a 33 NaN NaN
1 b 44 NaN NaN
0 NaN 32 dog 1
是它。謝謝! – Nikhil