因此,我已经初始化了一个空的熊猫DataFrame,并且希望将列表(或系列)作为行附加添加到此DataFrame中。最好的方法是什么?
有时候,在大熊猫之外进行所有附加操作会更容易,然后只需创建DataFrame即可。
>>> import pandas as pd >>> simple_list=[['a','b']] >>> simple_list.append(['e','f']) >>> df=pd.DataFrame(simple_list,columns=['col1','col2']) col1 col2 0 a b 1 e f