How to subset a table with character elements

33 visualizaciones (últimos 30 días)
Blue
Blue el 9 de Ag. de 2019
Respondida: Peter Perkins el 26 de Ag. de 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 comentarios
Blue
Blue el 9 de Ag. de 2019
Ah. Thank you.
dpb
dpb el 9 de Ag. de 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.

Iniciar sesión para comentar.

Respuestas (2)

Samatha Aleti
Samatha Aleti el 12 de Ag. de 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 el 26 de Ag. de 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.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by