Let’s say that you have estimated the following logistic regression model to calculate the log odds of a $4$ year old child being obese $(y = 1)$ using the independent variable weight in kgs $(x)$:
Log(Odds(x)) $= -2 + 0.15x$
What is the estimated probability of being obese for a 12kg child of the same age group?
I am not sure about it but I think that the logistic function is given by:
$P(y = 1) = \frac{1}{1+e^{-(log-odds)}}$
In your case, the log-odds is given by $-2+0.15x$. So, for a 12kg child $(x=12)$, the estimated probability of being obese is: $P(y = 1) = \frac{1}{1+e^{-(-2+0.15(12))}}$
Anyone else think otherwise? I'm not too sure about the logistic function though.