如何按照以下要求合并 python 中的数据集
How to combine the dataset in python as below requirement
我有一个数据集,我需要在末尾向现有数据框添加两个新列。
如果两个DataFrame的行序相同,使用concat
with set default index values by drop=True
in DataFrame.reset_index
:
df = pd.concat([X_test.reset_index(drop=True), dfs], axis=1)
我有一个数据集,我需要在末尾向现有数据框添加两个新列。
如果两个DataFrame的行序相同,使用concat
with set default index values by drop=True
in DataFrame.reset_index
:
df = pd.concat([X_test.reset_index(drop=True), dfs], axis=1)