Hi,
Proc Report Data=Cars;
Column MSRP Length;
Define MSRP/Max;
Define Length/Min;
Define Length/Mean;
Run;
I got only the Mean of Length variable . I didn't get the Minimum of Length variable. Anyone help me what is the problem of this code?
Thank you
You need to create aliases. A nice example can be found at: http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#n0ldy84v9j7463n1jjklo...
Art, CEO, AnalystFinder.com
You need to create aliases. A nice example can be found at: http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#n0ldy84v9j7463n1jjklo...
Art, CEO, AnalystFinder.com
Since, you want to perform analysis on same column and represent it in 2 separate columns of your report as min and mean, you will have to create aliases.
Your code should be something like ...
Proc Report Data=Cars;
Column MSRP Length=Length_min Length=Length_mean;
Define MSRP/Max;
Define Length_min/Min;
Define Length_mean/Mean;
Run;I have assumed that MSRP and Length variables are numeric in your dataset.
More information can be found on the SAS documentation:
Thank you for sending me the answer. I tried and it worked for me.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.