Convert double to categorical array

조회 수: 58 (최근 30일)
Parichada Trairat
Parichada Trairat 2022년 6월 16일
댓글: Peter Perkins 2022년 6월 17일
Hello,
I have a problem with convert double to categorical.
the matlab showed:
Error using categorical
Unable to create default category names. Specify category names using the CATEGORYNAMES input argument.
This is my code:
YTrain = trainYweekday';
YTrain = categorical(YTrain);
YTrain = num2cell(YTrain,1);
trainYweekday' is 1x360 double.
How can I convert trainYweekday to categorical?
Thank you very much.
  댓글 수: 1
Adam Danz
Adam Danz 2022년 6월 16일
@Parichada Trairat thanks for the YTrain values but I deleted them from your question so my mouse scroll wheel doesn't catch on fire 🔥 🙂
Feel free to attach long data sets as files.

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

채택된 답변

Adam Danz
Adam Danz 2022년 6월 16일
편집: Adam Danz 2022년 6월 16일
The function categorical can convert continuous data into categorical data. However, this function cannot categorize two numbers if the difference between them is less than 5e-5, unless their differences are 0.
Example:
categorical([pi, pi])
ans = 1×2 categorical array
3.1416 3.1416
categorical([pi, pi+5e-5])
Error using categorical
Unable to create default category names. Specify category names using the CATEGORYNAMES input argument.
To get around this, you must discretize the vector
vals = [pi, pi+5e-5];
categorical(discretize(vals, min(vals):1e-6:max(vals)))
See this MathWorks Support Team article for more details.
Also see this example from the categorical doc page that shows the use of discretize to prevent this problem.
  댓글 수: 2
Parichada Trairat
Parichada Trairat 2022년 6월 17일
Thank you very much
Peter Perkins
Peter Perkins 2022년 6월 17일
In addition to what Adam said:
The categorical function tries to make categories out of the unique values of whatever you give it. "Convert double to categorical" sometimes makes sense if you mean "convert continuous numeric data into categorical with one category for each unique numeric value." But if you run into this error, you almost certainly should be binning your continuous data using discretize instead.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by