convert categorical to numeric

623 vues (au cours des 30 derniers jours)
Fischer Zheng
Fischer Zheng le 19 Jan 2016
Commenté : the cyclist le 25 Juil 2022
I have a categorical array and I want to convert it back to the numerical matrix. What is the syntax?
Thanks,
  3 commentaires
Walter Roberson
Walter Roberson le 24 Juil 2022
double() returns category index https://www.mathworks.com/matlabcentral/answers/264383-convert-categorical-to-numeric#answer_311566
the cyclist
the cyclist le 25 Juil 2022
@AMEN BARGEES, if you look at other solutions, besides the accepted one, you will see that others suggested double(), followed by comments about how it did not actually solve the problem that was posed.

Connectez-vous pour commenter.

Réponse acceptée

the cyclist
the cyclist le 19 Jan 2016
Modifié(e) : the cyclist le 19 Jan 2016
If you have the Statistics and Machine Learning Toolbox, you could use the grp2idx command:
c = categorical({'Male','Female','Female','Male','Female'})
n = grp2idx(c)
That will simply encode the categories as numerical variables (which is handy for some other software packages). But that does not really change the fact that "1", "2" etc are still really just categories.
If you have categories that somehow embed numbers inside of them, that you want to convert to truly numerical (e.g. ordinal or interval) data, you'll need to be more specific about what your input is.
  7 commentaires
Ayachitula Radha Krishna
Ayachitula Radha Krishna le 23 Août 2017
I have an array of 3500 strings(some are repeated values) in my work space. I'm not able to access them while building a machine learning model. Is there any way that I can convert them into numerical value and then use it in the model or else can you suggest me any other better approach.
the cyclist
the cyclist le 23 Août 2017
I suggest you open a new question. You will get the attention of more people with a new, unanswered question rather than a comment on an answered question.
In that new question, I suggest that you include a small example of your data, or upload the entire array in a MAT file. You have not given enough information here to help you.

Connectez-vous pour commenter.

Plus de réponses (5)

Matthew Parkan
Matthew Parkan le 19 Mar 2018
Juste use the unique() function (which does not require any toolbox).
For example:
c = categorical({'Red','Blue','Red','Red','Blue','Blue','Green'});
[GN, ~, G] = unique(c)
Will return:
GN =
1×3 categorical array
Blue Green Red
G =
3
1
3
3
1
1
2
  1 commentaire
the cyclist
the cyclist le 19 Mar 2018
My comment on Xingyu Li's answer applies here as well. It works well if arbitrary numeric values are OK as output, but will not convert categorical '12' to numeric 12.

Connectez-vous pour commenter.


Peter Perkins
Peter Perkins le 23 Mar 2018

Calling categorical is a data conversion, so

   c = categorical([12 12 13])

completely throws away the numeric values. In general, there is no way to get them back unless you have saved them, any more than you can get back the original values from int8([1.1 2.2 3.3]). Calling categorical is a data conversion.

That being said, you can certainly save the unique numeric values, and then index into those using the categorical array:

   n = uniqueNumericValues(c)

You can also call double on a categorical, but what you will get back are the category numbers, not the original numeric values.

But here's the question: if you need to convert back to the original numbers, and you are not using meaningful category names when converting from those numbers, why use categorical to begin with? There may be things you haven't mentioned.

  4 commentaires
Ian Blake
Ian Blake le 10 Juin 2019
Modifié(e) : Ian Blake le 10 Juin 2019
Thanks.
I've come to the conclusion that would have been easiest, although I've developed an effective though crude workaround.
vfdbdata.DD01km is my categorical data array (from a table of data)
odocats = categories (vfdbdata.DD01km);
odoval = zeros (1, length (odocats) ); % preallocate space
for kk=1:length(odocats),
odoval(kk)=str2num(cell2mat(odocats(kk)));
end
So this is run before the main processing, the numeric data can then be extracted as required by
odotemp = double ( vfdbdata.DD01km(vidx) ) ;
odotemp = odoval (max (1, odotemp) ) ;
The max ensures that 'undefined' values are processed without throwing an error (they give a NaN after translation to double, which causes a subscript error), I also have some code to process specific values that can occur (hence the use of a temporary variable).
Matthew Anderson
Matthew Anderson le 13 Avr 2020
a = categorical(["2" "3" "3"])
double(a) % returns [1 2 2] - maybe desired for some reason
double(string(a)) % returns [2 3 3] - maybe desired for some reason
categorical(double(string(a)) % returns the same thing as a

Connectez-vous pour commenter.


Milan Andrejevic
Milan Andrejevic le 29 Avr 2018
It's an intuitive functionality that should exist. There are so many instances one needs to treat certain variables as categorical when using some modelling functions, and as continuous for other analyses, or simply be able to index the array comparing it to a number. This is so easy to do in other programming languages.

Xingyu Li
Xingyu Li le 15 Déc 2017
double(categorical)
  1 commentaire
the cyclist
the cyclist le 15 Déc 2017
Modifié(e) : the cyclist le 19 Mar 2018
This is a great solution for the use case of assigning arbitrary numeric values to general categorical variables, e.g.
c = categorical({'Male','Female','Female','Male','Female'})
But this will not solve this poster's particular use case of
c = categorical([12 12 13]);
and wanting numeric [12 12 13] as the output.

Connectez-vous pour commenter.


nathan blanc
nathan blanc le 16 Jan 2021
I converted the categorical data into a char and then used str2num. worked for me :)
  1 commentaire
Walter Roberson
Walter Roberson le 16 Jan 2021
In most cases it is better to use str2double() rather than str2num(). str2num() invokes the full power of eval(), which can lead to problems.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by