BookmarkSubscribeRSS Feed
raj23
Calcite | Level 5

I'm running the following multivariable Poisson model using PROC GENMOD, is there a way to change the units of the continuous variables baseline_SBP and baseline_DBP to 5 units instead of 1 unit?

proc genmod data = have;
class id gender(ref="M") race_cat(ref="White");
model bp_control = gender race_cat baseline_SBP baseline_DBP/ dist = poisson link = log;
repeated subject = id/ type = unstr;
run;

 

1 REPLY 1
Ksharp
Super User
I don't understand your question .
You could use ROUND() function to round 5 scale ,like :
baseline_SBP = round(baseline_SBP ,5);

Or you would like to see a UNITS statement in PROC LOGISTIC as in PROC GENMOD ?

And better post it at Statistic Forum since your question is about it,
And @StatDave @SteveDenham could have more/better idea.

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 545 views
  • 0 likes
  • 2 in conversation