ATMathew
2012-01-13 00:18:13 UTC
我具有以下概率函數:
$$ \ text {Prob} = \ frac {1} {1 + e ^ {-z}} $$
其中
$$ z = B_0 + B_1X_1 + \ dots + B_nX_n。$$
我的模型看起來像
$$ \ Pr(Y = 1)= \ frac {1} {1 + \ exp \ left(-[-3.92 + 0.014 \ times(\ text {gender})] \ right)} $$
我知道截距是什麼(3.92)意思是,但我現在確定如何解釋0.014。這些仍然是對數賠率,奇數比嗎?或者我現在可以斷言,隨著性別比的每增加,女性獲勝的可能性比男性高0.014。基本上,我該如何解釋0.014?
基本上,我想獲取概率函數並將其實際在Java中針對正在編寫的特定程序進行實現,但是我不確定我是否正確理解了實現該函數的功能
Java代碼示例:
double p = 1d /(1d + Math.pow(2.718d,-1d *(-3.92d + 0.014d *出價)));
這可能會有所幫助:http://en.wikipedia.org/wiki/Odds_ratio#Role_in_logistic_regression
這是一個[相關問題](http://stats.stackexchange.com/questions/8661/logistic-regression-in-r-odds-ratio)。還有其他幾種,例如[this one](http://stats.stackexchange.com/questions/14634/reporting-results-of-logistic-regression)。