Skip to content
Prev 389376 / 398502 Next

how to predict X given Y using logit regresion in R?

I tried with:
```
library(chemCal)
inverse.predict(model, 0.95)
$Prediction
[1] 0.4565871

$`Standard Error`
[1] 5.525725e-10

$Confidence
[1] 1.758532e-09

$`Confidence Limits`
[1] 0.4565871 0.4565871
```
but the value 0.457 does not sound good, it should be about 1.7. Could
it be that model is based on glm whereas inverse.predict uses linear
regression?
On Sat, Oct 2, 2021 at 10:14 AM Luigi Marongiu <marongiu.luigi at gmail.com> wrote: