Answers for "read csv colab"

7

upload file in colab

from google.colab import files
files.upload()
Posted by: Guest on May-05-2020
1

how to read a csv file in colab

import pandas as pd
df = pd.read_csv("(Path to file)")
Posted by: Guest on October-07-2021
0

open csv in coalb

#if csv file already uploaded in drive:-

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

#to read csv using numpy (only num data)
import numpy as np
data = np.genfromtxt('/content/drive/MyDrive/whatever location',delimiter=',',skip_header=1)
Posted by: Guest on January-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language