I'm trining to read a csv file with Python and Pandas, but my file has a big size (1 GB) so I can't to read all datas. By this web site I learned to use nrows to read rows from my file, for example read first 75 rows, but I can't to read a range of rows.
dts = pd.read_csv('C:\DtsPMU\dts.csv', dtype=float , nrows=75)
This link Python Pandas reads_csv skip first x and last y rows talks to use a code like this:
dts = pd.read_csv('C:\DtsPMU\dts.csv', dtype=float , skiprows=60, nrows=75)
Whit that code I'm try to read just range de rows (start in 60 to 75) but it doen't work.
How could I read range of rows from my csv file?
I'm use Python 3.6.5 and Pandas 0.23.2