QQ 라인의 신뢰 대역


14

이 질문은 구체적으로 관련이 R없지만 R설명 하기 위해 사용 하기로 선택 했습니다.

(일반) qq- 라인에서 신뢰 대역을 생성하는 코드를 고려하십시오.

library(car)
library(MASS)
b0<-lm(deaths~.,data=road)
qqPlot(b0$resid,pch=16,line="robust")

이 신뢰 대역이 어떻게 구성되어 있는지에 대한 설명 (또는 대안 문서 / 온라인 문서 링크)을 찾고 있습니다 (R의 도움말 파일에서 Fox 2002에 대한 참조를 보았지만 슬프게도 이것을 가지고 있지 않습니다 책 편리).

내 질문은 예를 들어 더 정확하게 만들어 질 것입니다. R이 특정 CI를 계산 하는 방법 은 다음 과 같습니다 (에서 사용 된 코드를 단축 / 단순화했습니다 car::qqPlot)

x<-b0$resid
good<-!is.na(x)
ord<-order(x[good])
ord.x<-x[good][ord]
n<-length(ord.x)
P<-ppoints(n)
z<-qnorm(P)
plot(z,ord.x,type="n")
coef<-coef(rlm(ord.x~z))
a<-coef[1]
b<-coef[2]
abline(a,b,col="red",lwd=2)
conf<-0.95
zz<-qnorm(1-(1-conf)/2)
SE<-(b/dnorm(z))*sqrt(P*(1-P)/n)     #[WHY?]
fit.value<-a+b*z
upper<-fit.value+zz*SE
lower<-fit.value-zz*SE
lines(z,upper,lty=2,lwd=2,col="red")
lines(z,lower,lty=2,lwd=2,col="red")

문제는 이러한 SE를 계산하는 데 사용 된 공식 (예 : line SE<-(b/dnorm(z))*sqrt(P*(1-P)/n)) 의 정당성이 무엇인가입니다 .

FWIW이 공식은 선형 회귀에 사용되는 일반적인 신뢰 대역 의 공식과 매우 다릅니다


2
나는 그것이 주문 통계의 분포 와 관련 있다고 기대한다 , 특히점근 결과:X(np)~AN(F-1(p
에프엑스(케이)(엑스)=!(케이1)!(케이)![에프엑스(엑스)]케이1[1에프엑스(엑스)]케이에프엑스(엑스)
X(np)AN(F1(p),p(1p)n[f(F1(p))]2)
Glen_b-복지국 Monica

4
@Glen_b가 맞습니다. 존 폭스는 35-36 페이지에 기록한다 : "주문 통계의 표준 오차 S E ( X ( I ) ) = σ는X(i)
SE(X(i))=σ^p(zi)Pi(1Pi)n
p(z)P(z)X^(i)=μ^+σ^ziX^(i)±2×SE(X(i))

2
나는 남아있는 유일한 것은 라고 생각한다.f(F1(p))(p(zi)/σ^)

답변:


6

주문 통계 분포 와 관련 이 있습니다.

에프엑스(케이)(엑스)=!(케이1)!(케이)![에프엑스(엑스)]케이1[1에프엑스(엑스)]케이에프엑스(엑스)
더 구체적 으로 점근 적 결과 :
엑스()(에프1(),(1)[에프(에프1())]2)

As COOLSerdash mentions in comments, John Fox [1] writes on pages 35-36:

The standard error of the order statistic X(i) is

SE(X(i))=σ^p(zi)Pi(1Pi)n
where p(z) is the probability density function corresponding to the CDF P(z). The values along the fitted line are given by X^(i)=μ^+σ^zi. An approximate 95% confidence "envelope" around the fitted line is, therefore, X^(i)±2×SE(X(i)).

Then we just need to recognize that f(F1(p)) is estimated by (p(zi)/σ^).

[1] Fox, J. (2008),
Applied Regression Analysis and Generalized Linear Models, 2nd Ed.,
Sage Publications, Inc

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.