I have a problem with the categorical function. Some variables of my problem are of the following type (It is a reduced form of my problem):
I want to convert it to a categorical array but the categorical function gives me the following error:
Error using categorical (line 321)
Could not find unique values in DATA using the UNIQUE function.
Caused by:
Error using cell/unique (line 85)
Input A must be a cell array of strings.
This is the code I use for convert it in a categorical array.
VarA.VarA = categorical(VarA.VarA);

5 件のコメント

Jan Orwat
Jan Orwat 2016 年 6 月 7 日
編集済み: Jan Orwat 2016 年 6 月 7 日
you are trying to make categorical array from a variable of mixed data types.
categorical([1 2 3 5 2 1])
categorical({'str1' 'str2'})
works, but
categorical({'str1' 'str2' 1 3 2 1})
does not. It works the same way for tables. Check categorical documentation for more information.
To solve this problem you may change numerical data to strings.
Stephen23
Stephen23 2016 年 6 月 7 日
@Jan Orwat: you should put this as an answer: I would vote for it, and it might get accepted too.
Manuel Valenciano
Manuel Valenciano 2016 年 6 月 7 日
編集済み: Manuel Valenciano 2016 年 6 月 7 日
How can I change numerical data to strings?
Brendan Hamm
Brendan Hamm 2016 年 6 月 7 日
idx = cellfun(@isnumeric,A);
Q = cellfun(@num2str,A(idx),'UniformOutput',false)
A(idx) = Q;
Manuel Valenciano
Manuel Valenciano 2016 年 6 月 8 日
Thank you for your answer

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

 採用された回答

Jan Orwat
Jan Orwat 2016 年 6 月 11 日

1 投票

(Copied from comments as suggested.)
You are trying to make categorical array from a variable of mixed data types.
categorical([1 2 3 5 2 1])
categorical({'str1' 'str2'})
works, but
categorical({'str1' 'str2' 1 3 2 1})
does not. It works the same way for tables. Check categorical documentation for more information.
To solve this problem you may change numerical data to strings.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCategorical Arrays についてさらに検索

質問済み:

2016 年 6 月 7 日

回答済み:

2016 年 6 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by