concat (資料合併)


  • 相同columns的多個DataFrame往下合併
  • 相同index的多個DataFrame往右合併
#使用函數concat,把草帽海賊團新舊成員合併成同一個DataFrame

#axis=0 表格往下接
#ignore_index=True 忽略本來的index,重新編號
df_straw_hat_mix = pd.concat([df_straw_hat_old, df_straw_hat_new], axis=0, ignore_index=True)

df_straw_hat_mix

#使用函數concat,把草帽海賊團的年齡身高資訊合併成同一個DataFrame

#axis=1 表格往右接
df_straw_hat = pd.concat([df_straw_hat_mix, df_straw_hat_info], axis=1)

df_straw_hat

results matching ""

    No results matching ""