How to convert dataframe (df), to a excel file that I can share with my colleagues ?
I am working on microsoft azure databrick, I have a final dataframe of shape (3276*23) , I want to share it in form of excel file? How can I do it ( I am using ->df.to_excel('fileOutput.xlsx', sheet_name = 'Sheet1', index = False) , command is runn...
- 14111 Views
- 2 replies
- 1 kudos
Latest Reply
You could try this way, convert Pyspark Dataframe to Pandas Dataframe then export to excel file.
- 1 kudos