How to find the mean of categorical data

6 visualizaciones (últimos 30 días)
Isabelle Lowson
Isabelle Lowson el 11 de Feb. de 2020
Respondida: Sindar el 12 de Feb. de 2020
How can I find the mean distance travelled on each day of the week over a certain period of time. I have the distance travelled for each day but need to find the mean for each week day.

Respuestas (1)

Sindar
Sindar el 12 de Feb. de 2020
check out splitapply. You may need to change the format of your data, but it does exactly what you want:
G = findgroups(Day);
mean_dist = splitapply(@mean,distance,G);

Categorías

Más información sobre Dates and Time 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!

Translated by