How can I divide a week of a timetable into hours

2 views (last 30 days)
Hi,
is it possible to devide a week of a timetable into 168 hours?
I would need the means of a timetable from monday to sunday on an hourly basis so I can show how its behaving of the week
Thx :)
  2 Comments
Antonio Melieni
Antonio Melieni on 15 May 2019
So what I need is the mean over each of the 168 hours of the week from these data

Sign in to comment.

Accepted Answer

Guillaume
Guillaume on 15 May 2019
hourlytimetable = retime(yourtimetable, 'hourly', 'mean')
  9 Comments
Guillaume
Guillaume on 16 May 2019
Peter, a suggestion: an option to specify bin indices instead of bin intervals for groupsummary at least. That would avoid having to create the binning variable:
hourofweek = ...
groupsummary(Volatility, 'BinNumbers', hourofweek, 'mean')
Peter Perkins
Peter Perkins on 20 May 2019
Yes, this would be useful in many contexts. Thanks.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion 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!