How can I combine two categorical columns of a tall table?
9 次查看(过去 30 天)
显示 更早的评论
I have a tall table with two categorical columns -- for example:
tx = tall(table(categorical({'a';'b';'b';'b'}), categorical({'x';'x';'y';'y'})));
and I want to create a new column that combines those columns.
For regular tables, I would write:
tx.Var3 = categorical(string(tx.Var1) + " " + string(tx.Var2))
However, this doesn't work with tall tables, since the string.plus method doesn't support tall arrays.
Is there a good way to create this combined column without gathering all the data?
0 个评论
回答(1 个)
另请参阅
类别
在 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!