Pandas로 드라이브에 CSV 파일을 로드하는 방법.

3102 단어 datascience

1. 드라이브 가져오기



먼저 노트북에서 드라이브를 가져와야 합니다. 다음 명령을 사용하세요.

from google.colab import drive


2. Google 드라이브 마운트



지정된 마운트 지점 경로에 Google 드라이브를 마운트하십시오.

drive.mount('/content/drive')


이 명령은 드라이브 사용 권한을 요청합니다.

3. 팬더 가져오기



노트북에 CSV를 로드하려면 다음을 사용합니다.

판다 가져오기

import pandas as pd


4. Pandas로 드라이브에 CSV 로드



Pandas로 CSV 파일 읽기

pd.read_csv('/content/drive/My Drive/{csv location}')


예시

pd.read_csv('/content/drive/My Drive/Colab Notebooks')


CSV 파일에 페이지가 많은 경우 이 줄을 사용할 수 있습니다.

pd.read_excel('{csv_location}', sheetname='{sheetname}')


예시

pd.read_excel('/content/drive/My Drive/Colab Notebooks', sheetname='january accounting')


CSV의 열이 특수 문자로 구분된 경우 다음을 사용할 수 있습니다.

pd.read_csv('/content/drive/My Drive/{csv location}' , sep='{special_character}')


예시

pd.read_csv('/content/drive/My Drive/Colab Notebooks' , sep='|')

좋은 웹페이지 즐겨찾기