필터 지우기
필터 지우기

Naive Bayes Classification for categorical values

조회 수: 2 (최근 30일)
Ege
Ege 2014년 11월 25일
댓글: Ege 2015년 1월 4일
Hi, I have a dataset containing numerical and categorical data. I like to use Naive Bayes Classifier in the following link but it only confers with numerical values.
Does anyone have an idea about how to extend that code to categorical data as well?

채택된 답변

Sean de Wolski
Sean de Wolski 2014년 11월 25일
Convert the categoricals to doubles.
c = categorical({'red';'blue';'red'})
double(c)
  댓글 수: 4
Sean de Wolski
Sean de Wolski 2014년 11월 26일
The table is nice for storing but not for these computations. Reconvert to a table after with the same names from the original table (T.properties.variableNames).
Ege
Ege 2015년 1월 4일
Hi i just realized that converting categorical to double makes things complicated. For example it gives different values to the ones that are actually same. I see values 127 ,96 all sort of different ones in a column where all of them were actually 'yes'. So what should I do about it?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Naive Bayes에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by