Plot data with date and time as the x axis
27 views (last 30 days)
Show older comments
Amir Hosein Shokouhy
on 4 Mar 2022
Edited: Cris LaPierre
on 7 Mar 2022
Hello,
Can anyone help me plot this table data? I want to have the date and time as x - axis and the other variables as 6 differnent plots all in the same
figure.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/914689/image.png)
Thanks,
Amir
0 Comments
Accepted Answer
Cris LaPierre
on 4 Mar 2022
Read the table in as a table using readtable. You will want to make sure column 1 is read in as a datetime. This 'should' happen automatically, but may depend on your version of MATLAB. Once in MATLAB, you can just plot using the datetime variable as your x input. As a datetime, it will automatically show date and time.
3 Comments
Cris LaPierre
on 7 Mar 2022
Edited: Cris LaPierre
on 7 Mar 2022
Try this syntax: stackedplot(___,'XVariable',xvar)
xlsx_name = 'C:\\Air Temperature\MQLoad (1).xlsx'
tab = readtable(xlsx_name);
stackedplot(tab,'XVariable','Var1')
If that doesn't work, please share your spreadsheet. You can attach it to your post using the paperclip icon.
More Answers (0)
See Also
Categories
Find more on Tables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!