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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 491 views
  • 4 likes
  • 3 in conversation