Hi
I am trying to create a sas bargraph that one can then filter on to view specific items.
Suppose the x-axis is the individual number of passes and the y-axis is the count. Then:
Proc Sgplot Data = Inputs;
Vbar = individual_ID;
Run;
should give me that noting that the individual might say play tennis, rugby, soccer and chess then I can add a Group = sport to get a single bar for an individual with stacks on it?
But say I want to filter on just rugby and still track the individual number in the x-axis.
Then finally, what if I want to filter on just on individual number to view more detail into them only across the various sports.
Kindly assist on the latter components