Pages

Tuesday, February 25, 2014

Widgets

Read data directly from websites in SAS

Do you know you can read data from websites directly? You can use the URL Access Method in the filename statement in SAS.

filename seercode URL "http://www.abc/data.txt";
data siterecode;
infile seercode truncover;
input @1 bigline $char256.;
run;

No comments:

Post a Comment