Use find to filter for results specified by user

조회 수: 3 (최근 30일)
Petros Katsoulis
Petros Katsoulis 2019년 11월 8일
댓글: Petros Katsoulis 2019년 11월 14일
I have a table with some data:
clothes = table;
clothes.Type = ["Suit";"Shirt";"Dress"];
clothes.Colour = ["Blue";"Red";"White"];
clothes.Price = [300;50;400];
I want to write a filter that allows a user to define what they are interested in in each category and return the result. A simple way to do this would be:
% User defined input
filters = struct;
filters.Type = "Shirt";
filters.Colour = "Red";
filters.Price = 50;
% Generate result
f = find(strcmp(clothes.Type,filters.Type) ...
& strcmp(clothes.Colour,filters.Colour) ...
& clothes.Price == filters.Price);
output = clothes(f,:);
Suppose the user doesn't want to filter for the price and wants to see all results relevant to Red Shirts. Is there a way to write the code in such a way that when the user doesn't set any value to the filter (e.g. filters.Price = []), the find function will return all table entries with Red Shirts irrespectively of price? I thought about checking if it is empty then set the filter to contain all unique values of the relevant column of the table, but the real dataset is quite large and it's not very efficient.
Thank you.

채택된 답변

Jan Studnicka
Jan Studnicka 2019년 11월 8일
Hi,
strcmp is slower then == and you can use == with strings. You can also save space and get better performance by using categorical arrays instead of strings when it makes sence.
Check documentation for more information about categorical arrays.
  댓글 수: 3
Jan Studnicka
Jan Studnicka 2019년 11월 11일
I would do it this way:
function st = tfilters(t,userinput)
vn = t.Properties.VariableNames;
idxV = ones(size(t));
for i = 1:length(vn)
if ismember(vn{i},fields(userinput))
if isempty(userinput.(vn{i})) == false
idxV(:,i) = t{:,vn{i}} == userinput.(vn{i});
end
end
end
idx = all(idxV,2);
st = t(idx,:);
However, instead of structures I would suggest using OOP.
Petros Katsoulis
Petros Katsoulis 2019년 11월 14일
Thank you! This works.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by