프로빗 반응 모형

R로 만드는 반응 모형

Kathrin Gruber

Assistant Professor of Econometrics Erasmus University Rotterdam

프로빗 반응함수

  • 구매확률은 잠재 성향입니다.
  • 관측 불가능한 연속 반응변수에 대한 회귀를 가정합니다.

R로 만드는 반응 모형

맥주 수요에 대한 프로빗 모형

probit.model <- glm(HOPPINESS ~ price.ratio,
                    family = binomial(link = probit), data  = choice.data)

coef(probit.model)
(Intercept)  price.ratio 
  -1.954092    -3.547546
R로 만드는 반응 모형

로지스틱 vs. 프로빗

cbind(coef(logistic.model), coef(probit.model))
                 [,1]      [,2]
(Intercept) -3.572678 -1.954092
price.ratio -6.738768 -3.547546

재스케일링

coef(probit.model)*1.6
(Intercept)  price.ratio 
  -3.126547    -5.676073 
R로 만드는 반응 모형

평균 한계효과

  • 로지스틱: 해석 가능한 로그오즈
margins(logistic.model)
price.ratio
    -0.4585
  • 프로빗: 해석이 어려운 z-값
margins(probit.model)
price.ratio
    -0.4503
R로 만드는 반응 모형

연습해 봅시다!

R로 만드는 반응 모형

Preparing Video For Download...