Plotting Timetable in Matlab
load_demand=readtable("Demand_timeseries_1hourResolution.xlsx");
TR=table2timetable(load_demand);
Time=TR({’05-05-2020′,’05-06-2020 00:00:00′},:);
T = timetable2table(Time)
x=T{2:end,1}
y=T{2:end,3}
plot(x,y)
I am trying to plot my timetable, but it will only plot a single point for it. So instead of plotting the whole data series for ‘Time’ it only plots for the first point. I tried converting it to an array but that didn’t work out too well. Hopefully somebody can help meload_demand=readtable("Demand_timeseries_1hourResolution.xlsx");
TR=table2timetable(load_demand);
Time=TR({’05-05-2020′,’05-06-2020 00:00:00′},:);
T = timetable2table(Time)
x=T{2:end,1}
y=T{2:end,3}
plot(x,y)
I am trying to plot my timetable, but it will only plot a single point for it. So instead of plotting the whole data series for ‘Time’ it only plots for the first point. I tried converting it to an array but that didn’t work out too well. Hopefully somebody can help me load_demand=readtable("Demand_timeseries_1hourResolution.xlsx");
TR=table2timetable(load_demand);
Time=TR({’05-05-2020′,’05-06-2020 00:00:00′},:);
T = timetable2table(Time)
x=T{2:end,1}
y=T{2:end,3}
plot(x,y)
I am trying to plot my timetable, but it will only plot a single point for it. So instead of plotting the whole data series for ‘Time’ it only plots for the first point. I tried converting it to an array but that didn’t work out too well. Hopefully somebody can help me timetable, plotting MATLAB Answers — New Questions