필터 지우기
필터 지우기

Getting row id of data

조회 수: 5 (최근 30일)
Sarmed Wahab
Sarmed Wahab 2022년 6월 5일
댓글: Walter Roberson 2022년 6월 6일
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개)

KSSV
KSSV 2022년 6월 5일
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
Sarmed Wahab
Sarmed Wahab 2022년 6월 6일
Thanks for the help, I have figured out how to get his done.
t3 = ismember(taxi_all.PickupZone, {'Alphabet City','Astoria'})
this returns 1 at the place of occurance of these values.
from there I can replace those 1's with the region name.
Walter Roberson
Walter Roberson 2022년 6월 6일
taxi_all.RegionName(idx)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by