How to find splitapply for multiple values

1 view (last 30 days)
x=readtable('milgram’)
occage=findgroups(x.occupation,x.Age)
I want to find the distribution for both age and occupation
For occupation I have figured it out:
[occage, ID] =findgroups(x.occupation,x.Age)
occupation=[ID]
but Im stuck on age, how do I get the 'ID' for that/ how do I get the way the groups have been split for that?

Accepted Answer

Matt J
Matt J on 23 Feb 2021
Edited: Matt J on 23 Feb 2021
[G, idOcc,idAge] =findgroups(x.occupation,x.Age)

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!