- a string array
- a cell array of character vectors
how to use categorical in uitable
6 ビュー (過去 30 日間)
古いコメントを表示
hi, I want to choose as value in a table field 'Fil' or 'Stat'
cat=categorical({'Fil';'Stat'});
name={'A','B'};
nrows=numel(name);
VNAMES={'Draw';'Filt_Stat'};
VTYPES=[{'logical'},{cat}];
T=table('Size',[nrows,numel(VNAMES)],'VariableTypes',VTYPES,'VariableNames',VNAMES); % empty t
T.Draw=repmat({true},nrows,1);
ct=cell(1, numel(name));
ct(:) = {cat{2}};
T.Filt_Stat=ct';
app.Portfolio_UITable.Data=T;
i get this error:
Error using table
Specify variable types as a string array or a cell array of character
vectors, such as ["string", "datetime", "double"].
0 件のコメント
回答 (1 件)
Walter Roberson
2024 年 10 月 6 日
cat=categorical({'Fil';'Stat'});
That is categorical.
VTYPES=[{'logical'},{cat}];
That is a cell array that includes an element that is categorical.
T=table('Size',[nrows,numel(VNAMES)],'VariableTypes',VTYPES,'VariableNames',VNAMES); % empty t
VTYPES is a cell array that includes an element that is categorical. The VariableTypes parameter must be one of:
The result of categorical({'Fil';'Stat'}) is categorical, not a character vector.
When you set the VariableTypes, you can set an entry to be "categorical" or 'categorical' but you cannot set the entry to be a categorical
2 件のコメント
Walter Roberson
2024 年 10 月 7 日
The VariableTypes parameter cannot hold any information about the details of categoricals.
What you might be thinking of is uitable . uitable() can have a ColumnFormat property, an element of which can be a cell array of character vectors that list category entries.
参考
カテゴリ
Help Center および File Exchange で Categorical Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!