Расчет доверительных интервалов для логистической регрессии


15

Я использую биномиальную логистическую регрессию , чтобы определить , если воздействие has_xили has_yвоздействий на вероятность того , что пользователь нажмет на что - то. Моя модель следующая:

fit = glm(formula = has_clicked ~ has_x + has_y, 
          data=df, 
          family = binomial())

Это вывод из моей модели:

Call:
glm(formula = has_clicked ~ has_x + has_y, 
    family = binomial(), data = active_domains)

Deviance Residuals: 
    Min       1Q   Median       3Q      Max  
-0.9869  -0.9719  -0.9500   1.3979   1.4233  

Coefficients:
                      Estimate Std. Error z value Pr(>|z|)    
(Intercept)          -0.504737   0.008847 -57.050  < 2e-16 ***
has_xTRUE -0.056986   0.010201  -5.586 2.32e-08 ***
has_yTRUE  0.038579   0.010202   3.781 0.000156 ***
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

(Dispersion parameter for binomial family taken to be 1)

    Null deviance: 217119  on 164182  degrees of freedom
Residual deviance: 217074  on 164180  degrees of freedom
AIC: 217080

Number of Fisher Scoring iterations: 4

Поскольку каждый коэффициент является значимым, используя эту модель, я могу сказать, какое значение имеет любая из этих комбинаций, используя следующий подход:

predict(fit, data.frame(has_x = T, has_y=T), type = "response")

Я не понимаю, как я могу сообщить о Std. Ошибка прогноза.

  1. Мне просто нужно использовать 1,96*SЕ ? Или мне нужно конвертировать SE используя подход, описанный здесь ?

  2. Если я хочу понять стандартную ошибку для обеих переменных, как бы я это учел?

В отличие от этого вопроса , мне интересно понять, каковы верхние и нижние границы ошибки в процентах. Например, мои предсказания показывает значение 37% для True,Trueможно рассчитать , что это для 95 % С I ? (0,3% выбрали, чтобы проиллюстрировать мою точку зрения)+/0.395%CI




@kjetilbhalvorsen Вы уверены, что это дубликат, так как ОП, кажется, хочет интервал прогнозирования, но, похоже, работает в масштабе ИЛИ, а не в логарифмическом масштабе, что может быть причиной проблемы?
mdewey

2
Если вы хотите оценить, насколько хорошо предсказывает логистическая регрессия, обычно используются другие меры, чем прогноз + SE. Один популярный критерий оценки - кривая ROC с соответствующим AUC
adibender

Ответы:


24

Ваш вопрос может возникнуть из-за того, что вы имеете дело с коэффициентами и вероятностями, что поначалу сбивает с толку. Поскольку логистическая модель представляет собой нелинейное преобразование вычисления доверительные интервалы не так просты.βTИкс

Фон

Напомним, что для модели логистической регрессии

  • Вероятность из : р = е α + β 1 х 1 + β 2 х 2(Yзнак равно1)p=eα+β1x1+β2x21+eα+β1x1+β2x2

  • Коэффициенты из : ( р(Y=1)(p1p)=eα+β1x1+β2x2

  • Вход Коэффициенты из : журнал ( р(Y=1)log(p1п)знак равноα+β1Икс1+β2Икс2

Рассмотрим случай, когда у вас есть увеличение на единицу переменной , т.е.Икс1 , тогда новые шансыИкс1+1

Odds(Yзнак равно1)знак равноеα+β1(Икс1+1)+β2Икс2знак равноеα+β1Икс1+β1+β2Икс2
  • Следовательно, коэффициент шансов (ИЛИ)

Odds(x1+1)Odds(x1)=eα+β1(x1+1)+β2x2eα+β1x1+β2x2=eβ1
  • Коэффициент логарифма = β1

  • Относительный риск или (отношение вероятностей) = eα+β1x1+β1+β2x21+eα+β1x1+β1+β2x2eα+β1x1+β2x21+eα+β1x1+β2x2

Интерпретация коэффициентов

Как бы вы интерпретировали значение коэффициента ? Предполагая, что все остальное остается неизменным:βj

  • Для каждой единицы увеличения отношение логарифмов увеличивается на β j .xjβj
  • Для каждой единицы увеличения отношение шансов увеличивается на e β j .xjeβj
  • При каждом увеличении от k до k + Δ отношение шансов увеличивается на e β j Δxjkk+ΔeβjΔ
  • Если коэффициент отрицательный, то увеличение приводит к уменьшению отношения шансов.xj

Доверительные интервалы для одного параметра βj

Мне просто нужно использовать ? Или мне нужно конвертировать SE, используя подход, описанный здесь?1.96SE

βj оценивается с помощью Maxiumum правдоподобия, теория MLE говорит нам, что он асимптотически нормален, и поэтому мы можем использовать большой выборочный доверительный интервал Вальда, чтобы получить обычный

βj±zSE(βj)

eβj±zSE(βj)

which is a confidence interval on the odds ratio. Note that these intervals are for a single parameter only.

If I want to understand the standard-error for both variables how would I consider that?

If you include several parameters you can use the Bonferroni procedure, otherwise for all parameters you can use the confidence interval for probability estimates

Bonferroni procedure for several parameters

If g parameters are to be estimated with family confidence coefficient of approximately 1α, the joint Bonferroni confidence limits are

βg±z(1α2g)SE(βg)

Confidence intervals for probability estimates

The logistic model outputs an estimation of the probability of observing a one and we aim to construct a frequentist interval around the true probability p such that Pr(pLppU)=.95

One approach called endpoint transformation does the following:

  • Compute the upper and lower bounds of the confidence interval for the linear combination xTβ (using the Wald CI)
  • Apply a monotonic transformation to the endpoints F(xTβ) to obtain the probabilities.

Since Pr(xTβ)=F(xTβ) is a monotonic transformation of xTβ

[Pr(xTβ)LPr(xTβ)Pr(xTβ)U]=[F(xTβ)LF(xTβ)F(xTβ)U]

Concretely this means computing βTx±zSE(βTx) and then applying the logit transform to the result to get the lower and upper bounds:

[exTβzSE(xTβ)1+exTβzSE(xTβ),exTβ+zSE(xTβ)1+exTβ+zSE(xTβ),]

The estimated approximate variance of xTβ can be calculated using the covariance matrix of the regression coefficients using

Var(xTβ)=xTΣx

The advantage of this method is that the bounds cannot be outside the range (0,1)

There are several other approaches as well, using the delta method, bootstrapping etc.. which each have their own assumptions, advantages and limits.


Sources and info

My favorite book on this topic is "Applied Linear Statistical Models" by Kutner, Neter, Li, Chapter 14

Otherwise here are a few online sources:


Much of this is about CI for the coefficients which is a fine thing for the OP to know about but are we sure that is what he needs? You later section seems to me more relevant but perhaps the distinctions may be missed if read too quickly?
mdewey

2
Yes you are probably right - but understanding odds, log odds and probabilities for log regression is something I struggled with in the past - I hope this post summarises the topic well enough to such that it might help someone in the future. Perhaps I could answer the question more explicitly by providing a CI but we would need the covariance matrix
Xavier Bourret Sicotte

5

To get the 95% confidence interval of the prediction you can calculate on the logit scale and then convert those back to the probability scale 0-1. Here is an example using the titanic dataset.

library(titanic)
data("titanic_train")

titanic_train$Pclass = factor(titanic_train$Pclass, levels = c(1,2,3), labels = c('First','Second','Third'))

fit = glm(Survived ~ Sex + Pclass, data=titanic_train, family = binomial())

inverse_logit = function(x){
  exp(x)/(1+exp(x))
}

predicted = predict(fit, data.frame(Sex='male', Pclass='First'), type='link', se.fit=TRUE)

se_high = inverse_logit(predicted$fit + (predicted$se.fit*1.96))
se_low = inverse_logit(predicted$fit - (predicted$se.fit*1.96))
expected = inverse_logit(predicted$fit)

The mean and low/high 95% CI.

> expected
        1 
0.4146556 
> se_high
        1 
0.4960988 
> se_low
        1 
0.3376243 

And the output from just using type='response', which only gives the mean

predict(fit, data.frame(Sex='male', Pclass='First'), type='response')
        1 
0.4146556

predict(fit, data.frame(Sex='male', Pclass='First'), type='response', se.fit=TRUE) will work.
Tony416
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.