필터 지우기
필터 지우기

how does fitglm treat categorical variables?

조회 수: 4 (최근 30일)
Hans van der Horn
Hans van der Horn 2022년 3월 6일
댓글: Jeff Miller 2022년 3월 7일
Dear all,
I'd like to verify something about categorical variables in fitglm. As input I use a table which also contains categorical variables (sex (0 vs 1), and education (on a scale 1 to 7). If I understand the documentation correctly, fitglm automatically treats these as categorical, and it also automatically dummy codes when necessary? (for education in this case). Is this correct?
Thanks very much.
Best
Hans van der Horn

채택된 답변

Jeff Miller
Jeff Miller 2022년 3월 6일
I don't that is correct. WIth numerical values in the table, I think you have to mark the variables as categorical with something like:
tbl.sex = categorical(tbl.sex);
tbl.education = categorical(tbl.education);
Where there are three or more categories (e.g., education) you can check the df's to make sure that the variable has been treated as categorical (6 dfs) rather than numerical (1 df, essentially a regression slope across 1-7).
  댓글 수: 2
Hans van der Horn
Hans van der Horn 2022년 3월 7일
Dear Jeff,
Thanks for your answer. I tried as you suggested and indeed it works better, with now dummy variables defined in the model.
Best Hans
Jeff Miller
Jeff Miller 2022년 3월 7일
Hi Hans,
That sounds good. If this answer solves the problem that you were having, then please accept it using the "Accept" button (so that the question no longer appears to be open).
Jeff

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by