Data Science Explorer

How to export excel file from Google Colab 본문

Projects

How to export excel file from Google Colab

grace21110 2023. 11. 3. 18:47
반응형

Today, after I finished data cleaning, I wanted to export the dataset into excel file. However, I did not know the way to export it.

 

Luckily, I found the way out to export the file into excel file (.csv)  on Google colab. 

from google.colab import files 
df.to_csv("filename.csv", index=False)
files.download("filename.csv")

 

 

I asked my coworkers and they kindly showed me how to export the file. I am so lucky to be part of them!