How to find the mean of categorical data

6 visualizzazioni (ultimi 30 giorni)
Isabelle Lowson
Isabelle Lowson il 11 Feb 2020
Risposto: Sindar il 12 Feb 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.

Risposte (1)

Sindar
Sindar il 12 Feb 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);

Categorie

Scopri di più su Dates and Time in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by