I am trying to create a boxplot in SAS 9.3 with a continuous group variable, but no more than the first three groups will appear on the plot.
I am using the code:
PROC BOXPLOT DATA=AB;
PLOT A*B / CONTINUOUS;
RUN;
- There should be 13 groups spread over 0.1 - 1.6 in increments of 0.1, with some missing.
- If I reformat the group variable to character all plots appear but I can't use a continuous axis.
- If I add a second decimal place (increasing the number of groups) still only the first three appear on the plot.
If anyone can suggest a solution it would be much appreciated,
Thanks
I am using the code:
PROC BOXPLOT DATA=AB;
PLOT A*B / CONTINUOUS;
RUN;
- There should be 13 groups spread over 0.1 - 1.6 in increments of 0.1, with some missing.
- If I reformat the group variable to character all plots appear but I can't use a continuous axis.
- If I add a second decimal place (increasing the number of groups) still only the first three appear on the plot.
If anyone can suggest a solution it would be much appreciated,
Thanks