Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- self parameter
- PANDAS
- iterates
- pie charts
- MySQL
- continue
- multiple lines
- PROJECT
- matplotlib
- polynomial regression
- error
- train/test
- For loops
- Github
- Else
- line color
- line width
- variables
- data distribution
- Python
- break
- Text mining
- Default X points
- AS
- SQL
- Text Analytics
- machine learning
- __init__
- start exercise
- matplotlib.pyplot
Archives
- Today
- Total
Data Science Explorer
How to export excel file from Google Colab 본문
반응형
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!
'Projects' 카테고리의 다른 글
How to duplicate each row by Python (0) | 2023.11.16 |
---|---|
How to fix the Error: WARNING:matplotlib.font_manager:findfont: Font family 'NanumBarunGothic' not found. (0) | 2023.11.03 |
Personal Project: Hangman (0) | 2023.11.02 |