Date: Wed, 12 May 2004 20:35:06 +0200
Reply-To: Werner News <wnews@DLAND.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Werner News <wnews@DLAND.DE>
Subject: boxplot a second variable
I use PROC BOXPLOT to plot the nitrogen content of corn in different
years.
Proc BOXPLOT DATA=N;
PLOT N_Corn*year / vaxis=axis1 /*VZERO*/;
run;
1st problem:
How to force origin to be included in vertical axis?
axis1 adds a label to the vertical axis. VZERO and VAXIS= cannot both
be specified.
2nd problem:
How to boxplot the content of a second variable (straw) with another
color in the same graph?
The N content of straw reaches from 0.25 to 1.25. The N content of corn
reaches from 1.5 to 3.
Thanks,
Werner
|