When I do pd.read_csv('FileName.csv'), I get the time column separate along with the rest of the data as shown:
When I do pd.read_csv('FileName.csv', , index_col=[0], parse_dates = [0]), knowing time in my data is index 0,I get this:
I checked the type of each and they are the same, however, when I try to do some analysis it work on one and it doesn't work on the other, like the resample function, it only work with the second dataframe.
Also, I can't use the time column in the second command. I have been looking but maybe am not familiar with key words, I would really appreciate the help! Thanks!