I can spell haha

This commit is contained in:
LinlyBoi
2023-03-28 10:28:12 +02:00
parent 859c302a86
commit 3667547332

View File

@@ -21,11 +21,10 @@ df2 = pd.read_csv("vgsales-12-4-2019-short.csv")
# merging # merging
df_compine = df1.merge(df2, left_on="Name", right_on="Name", how="left") combined_df = df1.merge(df2, left_on="Name", right_on="Name", how="left")
print(df_compine) print(combined_df)
df_compine.to_csv("output_final_df.csv") combined_df.to_csv("output_final_df.csv")
df = df_compine df = combined_df
output_df = "N There U Have It"
# --------------------------------------------------------- # ---------------------------------------------------------