Plot time sensitive data
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I imported two column vectors from a .xlsx file. The first one is called "Date", and contains the date and time of a corresponding measurement, in the format: 'yyyy-mm-dd hh:mm:ss. The second vector contains the corresponding measurment on that timestamp, let's call it 'Height'.
I tried to plot these vectors with the standard 'plot(Date,Height)' function, to see the chance of height over time. Note that the time spans multiple years, and contains thousands of measurements.
But the plot returns a tangeled mess of a graph, where the data points seem to be connected randomly to each other. I am aware of the datetime datatype, and the option to convert timestamps into different formats, without sucess in using them. But how do I get a decently looking graph, with which I can see the chance in height over time?
Thanks in Advance!
4 Kommentare
Bjorn Gustavsson
am 26 Nov. 2021
For these types of long-term series there often are seasonal (and possibly daily) variations, to enhance those you might consider using plot3 or scatter3 where you have year on the x-axis, day of year on the y-axis and your height along the z-axis (and colour-scale).
Antworten (0)
Siehe auch
Kategorien
Mehr zu Time Series Events finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!