Oranlar şansı ifade etmenin bir yoludur. Oran oranları sadece şudur: bir oran diğerine bölünür. Başka bir deyişle, bir oranın bir başka oranı üretmek için çarptığınız oranıdır. Bu ortak durumda nasıl çalıştıklarına bakalım.
Olasılık ve olasılık arasında dönüştürme
İkili yanıtın olasılıkları, Pr ( Y = 1 ) yazılan ( 1 ile kodlanmış ) gerçekleşme şansının ( 0 ile kodlanmış ), Pr ( Y = 0 ) yazılan şansa oranıdır :Y1Pr(Y=1)0Pr(Y=0)
Odds(Y)=Pr(Y=1)Pr(Y=0)=Pr(Y=1)1−Pr(Y=1).
Sağdaki eşdeğer ifade , olasılıkları bulmak için modelini ( Y = 1 ) yeterli olduğunu gösterir . Tersine, çözebileceğimizi unutmayınPr(Y=1)
Pr(Y=1)=Odds(Y)1+Odds(Y)=1−11+Odds(Y).
Lojistik regresyon
Lojistik regresyon , açıklayıcı değişkenlerin doğrusal bir fonksiyonu olarak Y olasılıklarının logaritmasını modeller . En genel olarak, bu değişkenleri x 1 , … , x p olarak yazarak ve doğrusal fonksiyonda olası bir sabit terim içeren, katsayıları (verilerden hesaplanacak olan) β 1 , … , β p ve β 0 . Resmi olarak bu, modeli üretirYx1,…,xpβ1,…,βpβ0
log(Odds(Y))=β0+β1x1+⋯+βpxp.
Oranlar kendileri logaritmayı geri alarak iyileşebilir:
Odds(Y)=exp(β0+β1x1+⋯+βpxp).
Kategorik değişkenleri kullanma
Yaş grubu, cinsiyet, Glokom varlığı vb. Gibi kategorik değişkenler, "kukla kodlama" yoluyla dahil edilir. Değişkenin nasıl kodlandığının önemli olmadığını göstermek için, küçük bir gruba basit bir örnek vereceğim; birden fazla gruba genellemesi açık olmalıdır. Bu çalışmada bir değişken, "Büyük", "Orta" ve "Küçük" olmak üzere üç kategoriden oluşan "öğrenci büyüklüğü" dür. (Çalışma, bunları sadece kategorik olarak ele alır, görünüşte içsel düzenlerine dikkat etmez.) Sezgisel olarak, her kategorinin kendi oranları vardır, örneğin "Büyük" için , "Orta" için α M ve "Küçük" için α S . Bu, diğer tüm şeylerin eşit olduğu,αLαMαS
Odds(Y)=exp(αL+β0+β1x1+⋯+βpxp)
"Büyük" kategorisindeki herkes için,
Odds(Y)=exp(αM+β0+β1x1+⋯+βpxp)
"Orta" kategorisindeki herkes için ve
Odds(Y)=exp(αS+β0+β1x1+⋯+βpxp)
"Küçük" kategorisinde olanlar için.
Tanımlanabilir katsayılar oluşturma
γβ0αLαMαS
αL+β0=(αL−γ)+(γ+β0),
vb modeli için herhangi bir sorun bu hediyelerin rağmen - hala tam olarak aynı şeyleri tahmin - parametreler kendileri de yorumlanabilir olmadığını o gösterileri. Bu toplama-çıkarma manevrasını yaptığımızda aynı kalan , katsayılar arasındaki farklardır . Geleneksel olarak, bu tanımlanabilirlik eksikliğini gidermek için , insanlar (ve varsayılan olarak, yazılım) her bir değişkenteki kategorilerden birini "temel" veya "referans" olarak seçer ve katsayısının sıfır olacağını şart koşarlar. Bu, belirsizliği ortadan kaldırır.
αLαL,αM, and αS, and added to β0 to compensate.
The log odds for a hypothetical individual falling into all the base categories therefore equals β0 plus a bunch of terms associated with all other "covariates"--the non-categorical variables:
Odds(Base category)=exp(β0+β1X1+⋯+βpXp).
No terms associated with any categorical variables appear here. (I have slightly changed the notation at this point: the betas βi now are the coefficients only of the covariates, while the full model includes the alphas αj for the various categories.)
Comparing odds
Let us compare odds. Suppose a hypothetical individual is a
male patient aged 80–89 with a white cataract, no fundal view, and a small pupil being operated on by a specialist registrar, ...
Associated with this patient (let's call him Charlie) are estimated coefficients for each category: α80-89 for his age group, αmale for being male, and so on. Wherever his attribute is the base for its category, the coefficient is zero by convention, as we have seen. Because this is a linear model, the coefficients add. Thus, to the base log odds given above, the log odds for this patient are obtained by adding in
α80-89+αmale+αno Glaucoma+⋯+αspecialist registrar.
This is precisely the amount by which the log odds of this patient vary from the base. To convert from log odds, undo the logarithm and recall that this turns addition into multiplication. Therefore, the base odds must be multiplied by
exp(α80-89)exp(αmale)exp(αno Glaucoma)⋯exp(αspecialist registrar).
These are the numbers given in the table under "Adjusted OR" (adjusted odds ratio). (It is called "adjusted" because covariates x1,…,xp were included in the model. They play no role in any of our calculations, as you will see. It is called a "ratio" because it is precisely the amount by which the base odds must be multiplied to produce the patient's predicted odds: see the first paragraph of this post.) In order in the table, they are exp(α80-89)=1.58, exp(αmale)=1.28, exp(αno Glaucoma)=1.00, and so on. According to the article, their product works out to 34.5. Therefore
Odds(Charlie)=34.5×Odds(Base).
(Notice that the base categories all have odds ratios of 1.00=exp(0), because including 1 in the product leaves it unchanged. That's how you can spot the base categories in the table.)
Restating the results as probabilities
Finally, let us convert this result to probabilities. We were told the baseline predicted probability is 0.736%=0.00736. Therefore, using the formulas relating odds and probabilities derived at the outset, we may compute
Odds(Base)=0.007361−0.00736=0.00741.
Consequently Charlie's odds are
Odds(Charlie)=34.5×0.00741=0.256.
Finally, converting this back to probabilities gives
Pr(Y(Charlie)=1)=1−11+0.256=0.204.