BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Durlov
Obsidian | Level 7
Given the SAS data set WORK.TEMPS:
The following program is submitted:
 
proc sort data=WORK.TEMPS:
      by descending Month Day;
run;

proc print data=WORK.TEMPS:
run; 
 
What is the output?
Answer: C
 
Why? How is C even sorted in descending order? I was thinking it would be A, since July comes after May.
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

C is correct. 

 

The months are character, so alphabetical order (corresponding to ascending MONTH) would be:

 

July

June

May

 

Descending month would give you:

 

May 

June

July

 

Within each month, the observations are sorted by ascending DAY (descending only applies to one variable).  

View solution in original post

3 REPLIES 3
Astounding
PROC Star

C is correct. 

 

The months are character, so alphabetical order (corresponding to ascending MONTH) would be:

 

July

June

May

 

Descending month would give you:

 

May 

June

July

 

Within each month, the observations are sorted by ascending DAY (descending only applies to one variable).  

Durlov
Obsidian | Level 7
Oh, I didn't actually think the descending would be applied to the characters themselves (thought it was the order of the dates). Makes sense though. Thanks!
ballardw
Super User

This is one of the many reasons when using date, datetime or time in analysis to strongly consider making SAS date, datetime or time valued variables instead of leaving the individual components (month day year hour minute second) as separate variables of often mixed type (month=> character, day year => numeric).

Then choosing an appropriated date display format, or making a custom one, makes the output pretty.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 5684 views
  • 7 likes
  • 3 in conversation