I'm trying to run a logit model in R which has only one predictor. I then want to construct a data frame with the predictor values on one column and the probabilities in another column.
Using LDA methodology, I'm able to do the following.
# RUN LDA
r <- lda(y ~ x)
## FIND AND PLOT...