필터 지우기
필터 지우기

Linear Regression: order of estimated coefficients does not match input order

조회 수: 4 (최근 30일)
For example,
mdl = fitlm(data,'EXPOS ~ X1 + X2 + HEIGHT + AGE')
The output
mdl.Coefficients
produces the estimated coefficients in the following order: HEIGHT, AGE, X1 and X2. Why does it do that? It really messes up some calculations! Please help!

채택된 답변

John D'Errico
John D'Errico 2015년 2월 22일
If you have created the dataset with those variables in the order (height, age, x1, x2) then that is the order they will appear in the final model, even though you specified the model as
'EXPOS ~ X1 + X2 + HEIGHT + AGE'
  댓글 수: 2
Isabel Chen
Isabel Chen 2015년 2월 22일
Oh I see! Thanks. So obvious now that you say it. The reason why this is an issue is because I'm trying to use the function
linhyptest()
which requires an input matrix specifying the linear combinations of the coefficients that I'm testing for (eg, testing the null hypothesis that beta_2=beta_4=0). Clearly if I choose my matrix based on how I specified the input, which is different from how Matlab actually outputs the coefficients, I'm going to be in trouble. Do you have any ideas on how to work around this, apart from checking the data manually?
John D'Errico
John D'Errico 2015년 2월 22일
편집: John D'Errico 2015년 2월 22일
You can extract the variable names from the data set, then use regexp (or some other tool, like strtok, or even my own function allwords on the File Exchange) to take apart the model string you will be using. Then sort the two sets of variable names to be consistent.
For example:
allwords('EXPOS ~ X1 + X2 + HEIGHT + AGE',' +~')
ans =
'EXPOS' 'X1' 'X2' 'HEIGHT' 'AGE'

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Analysis of Variance and Covariance에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by