so i have a dataframe that i want to proceed using this code :
# Create an Excel writer object
with pd.ExcelWriter(output_file_path, engine='xlsxwriter') as writer:
# Write the first DataFrame to a sheet named 'grouped_df_tph_sku'
tph_summary.to_excel(writer, sheet_name='tph_summary', index=False)
# Write the second DataFrame to a sheet named 'df'
df.to_excel(writer, sheet_name='df', index=False)
unfortunately i got an error liket this
FileCreateError: [Errno 28] No space left on device
even tough i check it to my disk, i have 218 gb free on my disk. the dataframe itself only had 200K rows and 55 columns. but still no idea why this is happen
problem caused by the code even tough it is no idea what is going on
New contributor
Fachry Dzaky is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.