This seems pretty simple in the legacy type graphs. Below is an
example using the dataset I have open at the moment. "FKeyNum" and
"RspdntID" are the numeric variables I am summarizing.
***************************************************************.
EXAMINE VARIABLES=FKeyNum RspdntID
/COMPARE VARIABLE
/PLOT=BOXPLOT
/STATISTICS=NONE
/NOTOTAL
/MISSING=LISTWISE.
GRAPH
/BAR(SIMPLE)=MED(FKeyNum) MED(RspdntID)
/MISSING=LISTWISE.
***************************************************************.
If this isn't sufficient you could make more complicated charts using
GPL, although it would be best for you to describe what your goals are
more explicitly and give an example format your data is currently in.
Obligatory note to avoid "Dynamite Plots" if you plan on adding error
bars to the median estimates for the bar plot!
http://biostat.mc.vanderbilt.edu/wiki/pub/Main/TatsukiKoyama/Poster3.pdf
Andy