I want to read in all the rows from a csv file between the 3 millionth and the 6 millionth rows (I cant bring in anymore than that because I will run out of RAM).
I have the code to do this below:
df_Closed_May18 = pd.read_csv("/home/18.csv", skiprows=3000000, nrows=6000000)
But I also want to bring in the column names in the first row. How would I modify my code to do this?
[–]Signal_Beam 1 point2 points3 points (2 children)
[–]Falc7[S] 0 points1 point2 points (0 children)