How can I combine two categorical columns of a tall table?

조회 수: 9 (최근 30일)
James
James 2017년 3월 28일
답변: Edric Ellis 2017년 3월 29일
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?

답변 (1개)

Edric Ellis
Edric Ellis 2017년 3월 29일
You can use join, like so:
join([string(tx.Var1), string(tx.Var2)])

카테고리

Help CenterFile Exchange에서 Categorical Arrays에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by