BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ammarhm
Lapis Lazuli | Level 10

Hi all,

I am using a proc glimmix to perform a poison regression, and using the "store" statement to store the output parameters

proc glimmix data=Poisson_sim;

class prog ;

model num_awards = prog math / dist=poisson  s cl;

store p1;

run;

Then using the following to estimate the IRR, and lower and upper CI

ods output ParameterEstimates = est;

proc plm source = p1;

  show parameters;

run;

data est_exp (drop=stderr llci luci estimate );

  set est;

  IRR = exp(estimate);

 

  llci=estimate - 1.96*stderr;

  luci=estimate + 1.96*stderr;

  UpperCI=exp (luci);

  LowerCI= exp (llci);

run;

proc print data = est_exp;

run;



The problem is: I am not managing to get the p-values from the proc Glimmix to be displayed in the output

Could anyone please advice me on how to do it?

Best wishes


1 ACCEPTED SOLUTION

Accepted Solutions
ammarhm
Lapis Lazuli | Level 10

Solved!

proc glimmix data=Poisson_sim;

class prog ;

model num_awards = prog math / dist=poisson  s cl;

ods output parameterestimates = p1;

run;

data p2;

      set p1;

      IRR = exp(estimate);

      LL = exp(lower);

      UL = exp(upper);

proc print data = p2;

      var Effect OR LL UL probt;

run;

View solution in original post

1 REPLY 1
ammarhm
Lapis Lazuli | Level 10

Solved!

proc glimmix data=Poisson_sim;

class prog ;

model num_awards = prog math / dist=poisson  s cl;

ods output parameterestimates = p1;

run;

data p2;

      set p1;

      IRR = exp(estimate);

      LL = exp(lower);

      UL = exp(upper);

proc print data = p2;

      var Effect OR LL UL probt;

run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1 reply
  • 2263 views
  • 0 likes
  • 1 in conversation