从数据框中剪切一行并将其粘贴到另一个数据框中
Cut a row from a dataframe and paste it to another dataframe
你好,我有一个 DataFrame table 让我们在顶部称它为 RC1.It。
我还有一个 table 让我们称之为 Vehicle1.I 需要将 RC1 行 (0) 剪切到 Vehicle1 的开头 table.I 编写我的代码。
zero_row=rc1.iloc[0,:]
vehicle1=pd.concat([zero_row, vehicle1]).reset_index(drop=True)
这是结果,它将 zero_row 作为 column.I 尝试重塑它但失败了。
我看所有的计算器,但示例都是列表。
谢谢大家。
最后没人回答所以我找了一个solution.Here是:
zero_row=rc1[rc1["CUST_NO."]==0]
vehicle1=rc1[rc1["CAR_TYPE"]==0]
vehicle1=pd.concat([zero_row, vehicle1]).reset_index(drop=True)
这次我选择了row.Then concat,成功了!!谢谢大家。
你好,我有一个 DataFrame table 让我们在顶部称它为 RC1.It。
我还有一个 table 让我们称之为 Vehicle1.I 需要将 RC1 行 (0) 剪切到 Vehicle1 的开头 table.I 编写我的代码。
zero_row=rc1.iloc[0,:]
vehicle1=pd.concat([zero_row, vehicle1]).reset_index(drop=True)
这是结果,它将 zero_row 作为 column.I 尝试重塑它但失败了。
我看所有的计算器,但示例都是列表。
谢谢大家。
最后没人回答所以我找了一个solution.Here是:
zero_row=rc1[rc1["CUST_NO."]==0]
vehicle1=rc1[rc1["CAR_TYPE"]==0]
vehicle1=pd.concat([zero_row, vehicle1]).reset_index(drop=True)
这次我选择了row.Then concat,成功了!!谢谢大家。