I am quite new to the sql.
The following code worked fine.
However, I would like to add a programming code that will enable me to get MEDIAN.
Could anyone please help?
Thank you in advance.
proc sql;
select type,
count(IPtotal) as _N ,
nmiss(IPtotal) as _MISS ,
avg(IPtotal) as _AVG ,
min(IPtotal) as _MIN ,
max(IPtotal) as _MAX ,
range(IPtotal) as _RANGE ,
std(IPtotal) as _STD ,
var(IPtotal) as _VAR
from didi
group by type;
quit;
Median is not supported by PROC SQL.
Use PROC SUMMARY/UNIVARIATE instead.
Linus,
Median() function is supported by PROC SQL if you have SAS9.4
I missed that @Ksharp , thanks for pointing it out!
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.