pandas:从一个数据帧添加行到另一个数据帧?

时间:2016-08-19 02:18:13

标签: python python-3.x pandas

我有两个具有相同列标题的数据框。

我正在迭代df1中的行,拆分其中一列,然后使用这些拆分列创建多行以添加到另一个数据帧。

for index, row in df1.iterrows():
    curr_awards = row['AWARD'].split(" ")
    for award in curr_awards:
        new_line = row
        new_line['AWARD'] = award.strip()
        #insert code here to add new_line to df2

将行添加到另一个数据框的pandas方法是什么?

1 个答案:

答案 0 :(得分:3)

我明白了。

func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
...
}