Assuming I have a set of data where the response variable y only takes the value of 0 and 1, and x are the covariate.
Follow the logic of the logistic function, define:
p=Probability(y=1) and we know the underlying function is that
p= 1/(1+exp(-beta*x))
How should I write the SAS code for it?
Is the following correct:
proc genmod data=XXXX
model y= x/dist=binomial
I am not sure if SAS actually maximize the likelihood function according to the aforementioned specification or SAS simply takes
g(y)=logit(y)=x*beta and run a OLS type regression to get beta.
If that is case, I do not think , and what should be the correct setup?
Thank you very much.
Both GENMOD and LOGISTIC (and other PROCs) use MLE for a binomial distribution, definitely not OLS. Check out LOGISTIC for great graphics.
Use proc logistic
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.