Hello all;
The first question is, 
how do I create a vertical bar graph that consists of multiple groups (RN, MD, RT,etc), ordered by month that the different groups don't end up stacked, but rather next to each other as I get when I perform such code:
proc sgplot data=AGGREGATEG;
vbar fx/ response=compliance group=type;
run;
The goal is  that the compliance is the Y axis, the months are the X axis with the groups in 4 different vertical bars. 
Some observations below:
Thanks
Lawrence
       Obs     fx      COMPLIANCE    DENOMS    NUMY    TYPE
        1    JUL10      0.81250        32      26      RN
        2    AUG10      0.91525        59      54      RN
        3    SEP10      0.58209       134      78      RN
        4    OCT10      0.43750        80      35      RN
        5    JUL10      0.60000         5       3      MD
        6    AUG10      0.40000        10       4      MD
        7    SEP10      0.42373        59      25      MD
        8    OCT10      0.30667        75      23      MD
        9    JUL10      0.00000         2       0      RT
       10    AUG10      0.66667         3       2      RT
       11    SEP10      1.00000         2       2      RT
       12    OCT10      0.66667         3       2      RT
       13    JUL10      0.81250        16      13      OT
       14    AUG10      0.85000        20      17      OT
       15    SEP10      0.23913        46      11      OT
       16    OCT10      0.48485        33      16      OT