I have a csv file that contains 90000 lines with a date format index. I don't need to read the first 9 lines because that's info that doesn't concern me. I've tried like this:
df_dados = pd.read_csv('dados.csv', skiplines=9, index_col=0, parse_dates=['timestamp'])
Unfortunally it doesn't work, and the only way I've surpassed this is by modifying the file which I wouldn't like to do. Is there a way to skip lines and set the time index?