I am trying to break a huge data file into smaller parts. I am using the following scripts -
df = pd.read_csv(file_name, header=None,encoding='latin1',sep='\t',nrows=100000, skiprows = 100000)
but I see that skip rows argument skips around 200000 rows instead of 100000 can anyone tell me as to why this is happening