Change data type of a table column into datetime?
Ältere Kommentare anzeigen
Hi,
I have read a table with readtable and changed my the column with the time data to a char using detectImportOptions-function.
I now wanna change the data type from char to datetime but it doesnt work. How do i need to do it?
Antworten (2)
Eric Sofen
am 9 Jun. 2020
1 Stimme
Take a look at the convertvars function for changing the data type of a table variable.
Also, is there a reason you're bring in the time data as char rather than directly as datetime or duration from readtable?
Drishti Jain
am 28 Mai 2020
You can use datetime: https://in.mathworks.com/help/matlab/ref/datetime.html
e.g-
tm='10:14:25'
new_tm= datetime(tm,'Format','HH:mm:ss')
1 Kommentar
Mohammad Zaheer Hussein Suhabuth
am 21 Okt. 2022
How abou the whole column of the table?
Kategorien
Mehr zu Tables finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!