Hi,
I have been trying to save some processed data using pandas from my databricks notebook.
I have tried two versions, using csv and xlsx. The code for both of them runs without any error, but I'm unable to find the location of the saved data.
for table, df in table_schemas.items():
df.to_csv(f"{table}.csv", index=False)
with pd.ExcelWriter(excel_file_path) as writer:
for table, df in table_schemas.items():
df.to_excel(writer, sheet_name=table, index=False)
I know how to save using spark, but trying out this functionality as i need data for multiple sheets and combine them into one excel. any suggestion is appreciated.
Thanks!