フィルターのクリア

logical operation with categorical data

3 ビュー (過去 30 日間)
Doron Joffe
Doron Joffe 2021 年 12 月 1 日
編集済み: Stephen23 2021 年 12 月 1 日
I have 6 csv files with one of the variables in the csv file containing names of players. I want to perform operations only if the name in the particular file is the name of a certain player. When I perform the logical operation in the 'if' line, I get an error. Am I performing the logical operation incorrectly? Is there a different way to do logical operations with categorical data?
for i = 1:6
csv = readtable(file(i).name);
K=categorical(csv.Var2(2)); %% reads the player name as categorical data.
if K=='Ronaldo'||'Messi'||'Neymar' % Only enter the loop if K is one of these players names
m=0;
m=m+1;
end
end
  2 件のコメント
Stephen23
Stephen23 2021 年 12 月 1 日
編集済み: Stephen23 2021 年 12 月 1 日
This will not work because you are attempting logical operations on character arrays of different sizes:
'Ronaldo'||'Messi'||'Neymar'
Use ISMEMBER or CONTAINS instead.
Doron Joffe
Doron Joffe 2021 年 12 月 1 日
Thank you very much for all the help.

サインインしてコメントする。

採用された回答

Rik
Rik 2021 年 12 月 1 日
This depends a bit on your source data, but you should look at the ismember function. Especially when combined with any, it really helps in these situations. Alternatively you could look at switch, which also allows multiple case definitions.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCategorical Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by