我有两个具有相同列标题的数据框。
我正在迭代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方法是什么?
答案 0 :(得分:3)
我明白了。
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
...
}