options ps=54 ls=76; goptions reset=all device=pdf gsfname=output gsfmode=replace; FILENAME website HTTP "http://www.stat.ufl.edu/~winner/sta6166/theoph.txt"; data one; infile website; input subject drug clearance; run; filename output "theoph_sas2.pdf"; symbol1 v=star; symbol2 v=diamond; symbol3 v=square; proc gplot; plot clearance*subject=drug; run; ods PDF file="theoph_sas.pdf"; ods graphics on; proc glm plots=diagnostics; class drug subject; model clearance = drug subject; means drug / bon tukey; run; ods graphics off; ods PDF close; proc freq; tables subject*drug*clearance / cmh2 scores=rank noprint; run; quit;