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?
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).
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?
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.
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.