I have one excel table and would like to use read_xlsx to convert it as an R dataframe.
Originally, in excel, the data looks like this:
dep_time
15:37:48
04:05:14
However, after I use the read_xlsx, the time column is something like below:
dep_time
1899-12-31 15:37:48
1899-12-31 04:05:14
I don't want to have the date in my future figure plotting. How can I avoid this?
Thanks!