Hello,
I need to take my variable Age and create a new variable, Age2, expressed as a t-score. How would I do this?
when I input this code,
proc standard data=combined out=tscore mean=50 std=10; var Age;
run;and do proc print I don't see any change in my results.
Thanks for any help!
I think you want PROC STDIZE instead and check the method options.
But those are z-scores, not t-scores.
@iressa131 wrote:
Hello,
I need to take my variable Age and create a new variable, Age2, expressed as a t-score. How would I do this?
when I input this code,
proc standard data=combined out=tscore mean=50 std=10; var Age; run;and do proc print I don't see any change in my results.
Thanks for any help!
What was your PROC PRINT code? Which data set did you print?
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.