필터 지우기
필터 지우기

How to take unique rows based on two columns

조회 수: 1 (최근 30일)
Mekala balaji
Mekala balaji 2018년 7월 5일
댓글: Image Analyst 2018년 7월 8일
Hi,
I have below previousDdata and currentData (cell matrix), and I want extract and add to currentData the unique rows based on column2 & column3(which does not exists in currentData) of previousData.
previousData:
Date PreName PostName score rank
2018-01-01 A V 12 23
2018-01-01 H Q 45 95
2018-01-02 B K 10 36
currentData:
Date PreName PostName score rank
2018-01-01 A V 12 23
2018-01-01 H Q 45 95
2018-05-12 P N 10 36
2018-06-14 X G 10 36
for example: row3 (B & K), does not exists in currentData, so I will retain it from previousData. My desired output is:
result:
Date PreName PostName score rank
2018-01-01 A V 12 23
2018-01-01 H Q 45 95
2018-05-12 P N 10 36
2018-06-14 X G 10 36
2018-01-02 B K 10 36
  댓글 수: 1
Image Analyst
Image Analyst 2018년 7월 8일
Please read this link and attach your table in a .mat file to make it easy for people to help you.

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

답변 (1개)

Image Analyst
Image Analyst 2018년 7월 5일
Try findgroups().
By the way, a table is NOT a cell matrix. They are two totally different kinds of variables!
Oh, and also please read this link to learn how to format your questions so people can read them.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by