Convert data from minutes to hourly average
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
My data has time set up as dd-month-yyyy hh:mm:ss How do I average my data from minutes to hours
0 comentarios
Respuestas (1)
Mohammad Sami
el 8 de Oct. de 2020
If your data is in timetable / table format. You can use the groupsummary to summarise your data into any intervals.
a = groupsummary(TT,"Column_w_datetime","hour","mean");
2 comentarios
Mohammad Sami
el 8 de Oct. de 2020
Yes hour will provide hourly average. There are also other options if you want to change the interval.
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!