I'm trying to read data from .csv file in Jupyter Notebook (Python)
.csv file is 8.5G, 70 million rows, and 30 columns
When I try to read .csv, i get errors.
Below are my codes
import pandas as pd
log = pd.read_csv('log_20100424.csv', engine = 'python')
I also tried using pyarrow, but it doesn't worked.
import pandas as pd
from pyarrow import csv`
log = csv.read('log_20100424.csv').to_pandas()
My Question is :
How to read a huge(8.5G) .csv file in Jupyter Notebook
Is there any other way to read a huge .csv file ?
My Laptop has 8gb RAM, running 64bit Windows 10, and i5-8265U 1.6Ghz.