options nodate nonumber ps=54 ls=76; data one; infile 'H:\public_html\consult\lpgasplt.dat'; input golfer $ 1-24 tourney round score; run; proc glm; class golfer tourney round; model score = round tourney round*tourney golfer golfer*round; test h=round e=round*tourney; means golfer / bon; run; proc mixed; class golfer tourney round; model score = round golfer golfer*round; random tourney round*tourney; run; proc mixed; class golfer tourney round; model score = round ; random tourney round*tourney golfer golfer*round; run; quit;