Hi everyone! I have 4 variables that are 0/1 responses. For example: Input GroupA GroupB GroupC GroupD; datalines ; 1 0 0 1 1 0 1 0 0 0 0 1 0 1 1 1 etc etc. How would I plot each of the variables into ONE vbar graph? Currently what I have: PROC SGPLOT; VBAR GroupA GroupB GroupC GroupD; and it does not work for me. Thank you!
... View more