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-white.png

🚨 Early Bird Rate Extended!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Lock in the best rate now before the price increases on April 1.

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