구글 드라이브 활용하기
실습 데이터
health
google drive 연결하기
복사from google.colab import drive
drive.mount('/content/drive')
google drive 파일 읽어오기
복사import numpy as np
import pandas as pd
df = pd.read_csv('/content/drive/MyDrive/Colab Notebooks/health4.csv', sep=',', encoding="cp949")
print(df.head())