/* To use this program, cut and paste the table at http://www.forbes.com/2009/08/02/best-buys-colleges-opinions-value.html into a file called "coll.txt" */ options ls=80; data colleges; infile 'coll.txt' pad; input #1 rank #4 college $40. #7 state $8. #8; run; proc print data=colleges; run; proc freq data=colleges order=freq; tables state; run;