FILENAME goptions URL "http://192.38.117.59/~linearpredictors/datafiles/goptions.sas"; %include goptions; FILENAME url URL "http://192.38.117.59/~linearpredictors/datafiles/readVitaminD.sas"; %include url; /* Women from Ireland and Poland */ DATA irpo; SET vitamind (WHERE = (country in (4,6) and category=2)); RUN; PROC GPLOT DATA = irpo; PLOT bmi*age=country / HAXIS=AXIS1 VAXIS=AXIS2; AXIS1 MINOR = NONE OFFSET = (5 pct) LABEL = ('Age'); AXIS2 MINOR = NONE LABEL = (A=90 R=0 "BMI"); SYMBOL1 VALUE = dot I=none COLOR = black; SYMBOL2 VALUE = circle I=none COLOR = blue; RUN; QUIT;