Getting row id of data
Afficher commentaires plus anciens
I have a large data set of over 22 lac rows. This data comprises of 251 zones in Washington and out of these zones I am interested in only 30 zones. I used groupsummary to get the frequency of occurance of the a specific zone.
groupsummary(data,"PickupZone")

Now I want to get the row id of a specific PickupZone, for that I require some help on how to get the row id of every occurance of Astoria.
Then I will use that row id to assign a new variable in table for the regions comprising of those zones.
1 commentaire
Stephen23
le 5 Juin 2022
lac = 1e5
Réponses (1)
KSSV
le 5 Juin 2022
Let T be your table. And you want to seperate Astoria from T into another table T1.
idx = strcmp(T.PickupZone,'Astoria') ;
T1 = T(idx,:) ;
3 commentaires
Sarmed Wahab
le 6 Juin 2022
Sarmed Wahab
le 6 Juin 2022
Walter Roberson
le 6 Juin 2022
taxi_all.RegionName(idx)
Catégories
En savoir plus sur Tables dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!