I want to read a csv file that has more than 200M rows and the data look like this:
| id_1 | date | id_2 |
|---|---|---|
| Hf23R | 01-01-2005 | M9R34 |
There is no null in the data and there is no special character i tried read it the basic way but it crash my computer every time i run the code i cannot do any analysis on it or anything so is there is a way to read via panda in a sufficient way!!
Here is how i read it!
import pandas as pd
path = "data.csv"
df = pd.read_csv(path)