BookmarkSubscribeRSS Feed
bigbigben
Obsidian | Level 7

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.

2 REPLIES 2
lvm
Rhodochrosite | Level 12 lvm
Rhodochrosite | Level 12

Both GENMOD and LOGISTIC (and other PROCs) use MLE for a binomial distribution, definitely not OLS. Check out LOGISTIC for great graphics.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1319 views
  • 0 likes
  • 3 in conversation