The question for SAS® Programming 1: Essentials Lesson 03, Section 1; Level 2 Question 6 is the following:
View the pg1.np_summary table to identify the name and size of the smallest and largest parks.
For the solution, it has the name and size of the smallest and largest park but not the steps.
The question I have is:
Which steps/process was I supposed to take that followed the module?
How am I supposed to identify the ParkName of the Min and Max using the SAS Training/code that has been introduced up to this point?
These are just two of the many methods I used for acquiring the MIN and MAX.
proc univariate data=pg1.np_summary;
var Acres;
run;
proc means data=PG1.NP_SUMMARY MIN MAX;
var Acres ParkName;
run;
... View more