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