How to subset a table with character elements

34 views (last 30 days)
Blue
Blue on 9 Aug 2019
Answered: Peter Perkins on 26 Aug 2019
Hi,
I have a very basic question I would like to understand. Lets say we have a basic table like so:
year = {1994, 1994, 1994, 1995, 1995, 1995, 1996, 1996, 1996}.';
type = {'AA', 'BB', 'CC', 'BB', 'BB', 'BB', 'AA', 'CC', 'CC'}.';
t = table(year, type);
Lets further say I want to subset this table by type. I could go with:
j = t(t.type == 'AA',:);
dsMale = hospital(hospital.Sex=='Male',:);
Except this fails: Undefined operator '==' for input arguments of type 'cell'.
The correct answer seems to be this:
k = t(strcmp(t.type, 'AA'), :)
So what gives ? What am I missing ?
Thank you,
  3 Comments
dpb
dpb on 9 Aug 2019
"One thing is that your data is a table. The documentation you linked to is not for tables, it is for a data class that is defined in the Statistics Toolbox called dataset"
One of the most maddening things about what TMW has done over the last several years ... they introduce these partially-ready-for-prime-time classes in toolboxes then shortly thereafter essentially abandon them and introduce the same functionality in the main product.
But, with different class definitions, the two aren't interoperational and so confusion reighneth plus the bloat of multiple implementations of the same functionality...it's a mess.
There seems to be nobody in charge of the playpen that prevents such things from being introduced until there is a longterm plan in place...and, once release into the wild, the ultimate loser is just an exotic species left roaming around untended.

Sign in to comment.

Answers (2)

Samatha Aleti
Samatha Aleti on 12 Aug 2019
For cell arrays, in case of comparison the operator “==” doesn’t help. As you mentioned in the reference document, it worked since, “hospital.Sex” is not of type “cell array” whereas “t.type” in your case is a “cell array”.

Peter Perkins
Peter Perkins on 26 Aug 2019
Blue, I'm a little late to the party, but at least for those data, what you really ought to do is use a categorical for t.type. If you do, t.type == 'AA' absolutely will work.
As others said, string is newer than "cell arrays of char row vectors", and is a much better choice for text, but what you've shown for t.type looks like categorical, and I think you'll be happier storing it that way.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!