robustfit
로버스트 선형 회귀 피팅
설명
예제
입력 인수
출력 인수
세부 정보
알고리즘
robustfit은 반복 재가중 최소제곱을 사용하여 계수b를 구합니다. 입력wfun이 가중치를 지정합니다.robustfit은inv(X'*X)*stats.s^2식을 사용하여 계수 추정값의 분산-공분산 행렬stats.covb를 추정합니다. 이 추정을 통해 계수 표준 오차stats.se와 상관stats.coeffcorr이 구해집니다.선형 모델에서
y의 관측값과 그 잔차는 확률 변수입니다. 잔차는 평균이 0이지만 예측 변수의 여러 값에서 다른 분산을 갖는 정규분포를 가집니다. 잔차를 비교 가능한 스케일로 만들기 위해robustfit은 잔차를 “스튜던트화”합니다. 즉,robustfit은 잔차 값과는 독립적인 표준편차 추정값으로 잔차를 나눕니다. 스튜던트화 잔차는 알려진 자유도를 갖는 t-분포를 가집니다.robustfit은 스튜던트화된 잔차를stats.rstud로 반환합니다.
대체 기능
robustfit은 단순히 함수의 출력 인수가 필요하거나 루프에서 모델을 여러 차례 반복 피팅하는 경우에 유용합니다. 로버스트 피팅 회귀 모델을 추가로 조사하려면 fitlm을 사용하여 선형 회귀 모델 객체 LinearModel을 생성하십시오. 이름-값 쌍 인수 'RobustOpts'의 값을 'on'으로 설정합니다.
참고 문헌
[1] DuMouchel, W. H., and F. L. O'Brien. “Integrating a Robust Option into a Multiple Regression Computing Environment.” Computer Science and Statistics: Proceedings of the 21st Symposium on the Interface. Alexandria, VA: American Statistical Association, 1989.
[2] Holland, P. W., and R. E. Welsch. “Robust Regression Using Iteratively Reweighted Least-Squares.” Communications in Statistics: Theory and Methods, A6, 1977, pp. 813–827.
[3] Huber, P. J. Robust Statistics. Hoboken, NJ: John Wiley & Sons, Inc., 1981.
[4] Street, J. O., R. J. Carroll, and D. Ruppert. “A Note on Computing Robust Regression Estimates via Iteratively Reweighted Least Squares.” The American Statistician. Vol. 42, 1988, pp. 152–154.
버전 내역
R2006a 이전에 개발됨



