📜  字典中的 megre pandas - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:52.295000             🧑  作者: Mango

代码示例1
df = pd.DataFrame() # Create an empty dataframe, this will be your final dataframe

for key, sub_df in data_animal_id_groups.items():
    df = df.append(sub_df, ignore_index=False) # Add your sub_df one by one

print(df)