BookmarkSubscribeRSS Feed
harveysarah0
Calcite | Level 5

Sort your merged SAS data set by price of a quarter rack of ribs, from cheapest to

most expensive. Print the resulting table and present it (properly titled) in your

solutions.

 

proc sort data=Bbq;
          
   by descending price 
  
run;

 

What else am I missing? 

3 REPLIES 3
Patrick
Opal | Level 21

Use a Title statement and Proc Print to print your data.

Check if the sort order is correct and from cheapest (lowest value) to most expensive (highest value).

harveysarah0
Calcite | Level 5

what's a title statement? Sorry I am very new to SAS. and so everything is right except including the title statement and using Proc Print?

Patrick
Opal | Level 21

Proc Sort allows you to sort a table. You've done that (but.... shouldn't you sort ascending from lowest to highest value?).

Now using this sorted table you need to create a report (print what's in the table).

 

The title statement is what allows you to define a title for your report. Documented here.

Proc Print is a SAS procedure which allows you to create a report (print your data). Documented here.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 780 views
  • 0 likes
  • 2 in conversation