How to use timetable in machine learning app?

5 次查看(过去 30 天)
I have a table T, first column is the year, second column is the month, third column is the day and fourth column is the hour. I have temperature data in the fifth column.
I make it timetable like this;
T=....%my existing table
t=datetime([T{:,1:4},zeros(size(T,1),2)]);
TT=timetable(T{:,end},'RowTimes',t);
Then i want to use this time data and temperature data in regression learner to predict missing temperature datas.
But when importing data from workspace to regression learner, it doesnt recognise the timetable but only the table T.
Is there any way to use timetable data in regression learner or machine learner ?
Thank you.

回答(1 个)

Fabrice Lambert
Fabrice Lambert 2020-3-26
Hi,
As far as I know the regression and classification learner apps do not support timetables. It doesn't matter though since you don't need the time information for these apps. Just transform them to tables using timetable2table.

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by