The table is ordered in decreasing frequency from top to bottom, but the plot is ordered in increasing frequency from bottom to top. I understand this is probably b/c the y axis value is increasing in that direction, but it still just looks suboptimal viewing the table and plot together. Is there any way to make the ordering between table and plot consistent? As a side question, even though I set a label, is there any way to not have the original variable name be used (and especially so prominently in the plot title) - there could be times when the original variable name is even uglier (eg, from ADaM/SDTM data). Here is my code ods graphics on;
proc freq data=pg1.storm_final order=freq;
tables StartDate / plots=freqplot(orient=horizontal scale=percent);
format StartDate monname.;
label StartDate='Storm Month';
run; Example data comes from this SAS course: https://learn.sas.com/course/view.php?id=118
... View more