You have to LOOK at the output data set and determine the names of the variables for your data and analysis. For your example, try the following:
proc sort data=N_avg_min_Summary out=SeasonMeans;
where not missing(Season);
by descending MinPressure_Mean;
run;
proc print data=SeasonMeans; run;
... View more