This is Argyn's blog. I comment on topics of my interests such as software, math, finance, and music. Also, I write about local events in Northern Virginia, USA and all things related to Kazakhstan

Monday, September 11, 2006

Reading Data into SAS

filename toxic 'D:\Research\Toxin\Data1998\DON.txt';data readasc; infile toxic delimiter=',' firstobs=12 obs=100; input location truck probe DON;run;

This is how top read CSV into SAS

Read more at www.ats.ucla.edu/stat/s...

No comments: