How to extract time (HH:mm) from datetime from a table and plot it in interval range?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dennis Huver
am 29 Aug. 2017
Kommentiert: Dennis Huver
am 30 Aug. 2017
I have a table with datetime columns and cells and numbers too. The datetime are in default format. I want to extract only the hours from the datetime, and plot it with the column of class double. So, y axis to have the "double" column and x "datetime" but x axis to have intervals such as 00:00-02:00, 02:00-04:00,.....14:00-16:00...22:00-00:00. There are a lot of dates,and what I am trying to do is analyse them in HH:mm rather than chronologically by year and full datetime format. Thanks
0 Kommentare
Akzeptierte Antwort
Guillaume
am 29 Aug. 2017
Bearbeitet: Guillaume
am 29 Aug. 2017
Note that the format of the datetime array is irrelevant. It is only used for display. You could of course change the Format so that it only shows hours and minutes but calculations would still involve the date as well.
You use the hour and minute functions to extract the hours and minutes from a datetime array. Alternatively, you use the Hour and Minute properties of the datetime object.
d = datetime + hours(1:10)' + minutes(1:10)'; %create demo datetime a array
hour(d) %get the hour
d.Hour %another way
minute(d) %get the minute
d.Minute %another way
As for the plot, I'm unclear what you want to do. If two values have the same hours and minutes but different day, do you want to plot them at the same abscissa, like a scatter plot?
4 Kommentare
Guillaume
am 30 Aug. 2017
Still not very clear what it is exactly you are doing but glad you solved it. It does sound like you want to clump your data by two hours interval. If that is so, then as Peter said, the discretize function would be the easiest way to do it.
Weitere Antworten (1)
Peter Perkins
am 29 Aug. 2017
I'm not entirely clear what you are trying to do in this plot. It sounds like you want to plot things against time of day, not against absolute time. In recent versions of MATLAB, you can do that just as
plot(timeofday(t.TimeStamp),t.Y)
But then you mention something that sounds like you want to discretize the data into 2hr bins. I'm not sure how that would work in a plot, but the discretize function might be some help.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!