/* FOLLOWING ARE MY CODES */ title "Base salary discrepancy within ranks"; title2 "By Gender"; PROC MEANS DATA=MD_Data mean; VAR 'Base Salary'n; CLASS 'Department Name'n Grade Gender; output out = PayGap; RUN; The new dataset 'PayGap' looks different from the PROC MEANS table I generated. Why and how to fix it? Thank you!
... View more