7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Google ColaboratoryでGoogle Driveからcsvファイルなどを読み込む

Last updated at Posted at 2023-01-06

概要

Colab上でのファイルの読み込みや、自作pyファイルのインポートなどのやり方を備忘録のために記します。

Google Driveへファイルをアップロード

自分がプログラムで読み込ませたいcsvやtxt,pythonなどをDriveへアップロード。
Colabで継続的に使うものであれば専用フォルダを作って整理するとよい。

Google Driveをマウント

Colab上で以下を実行

from google.colab import drive
drive.mount('/content/drive')

初回はいろいろと許可が求められる。

パスのコピー

画面左のフォルダのアイコンをクリックすると、自分のGoogleDriveが接続されている。

スクリーンショット_20230106_135708.png

後はMyDriveから任意のファイルにたどり着き、ドット3つのアイコン→「ファイルのパスをコピー」を選択。
プログラムに張り付ける

import pandas as pd
df = pd.read_csv("/content/drive/MyDrive/Colab Notebooks/score.csv", encoding="SHIFT-JIS")
df.head()
7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?