Hi all,
I want to get a boxplot figure like the following:
My dataset include thousands of stations, and for each station it have results for 2 treatments (similar as black and blue in the figure) and 12 months (Jan to Dec) and a total as annual (x-axis has 13 labels).
The variables in my dataset are: station time(Jan-Dec,Ann) Treatment1 Treatment2
Anyone has any idea about how to get the figure?
By the way, I used the following code, but could only do it one treatment by one treatment.
proc sort data = mydata;
by time;
run;
proc boxplot data = mydata;
plot treatment1 * time;
run;
... View more