BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_AMUH
Obsidian | Level 7

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;

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Linus,

Median() function is  supported by PROC SQL if you have SAS9.4

View solution in original post

3 REPLIES 3
LinusH
Tourmaline | Level 20

Median is not supported by PROC SQL.

Use PROC SUMMARY/UNIVARIATE instead.

Data never sleeps
Ksharp
Super User

Linus,

Median() function is  supported by PROC SQL if you have SAS9.4

LinusH
Tourmaline | Level 20

I missed that @Ksharp , thanks for pointing it out!

Data never sleeps
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
  • 3 replies
  • 1041 views
  • 4 likes
  • 3 in conversation