BookmarkSubscribeRSS Feed
ets_kps
SAS Employee

Ok folks my turn to ask for help....

I want to know how to import this file from the web. https://raw.githubusercontent.com/sassoftware/enlighten-integration/master/SAS_Base_OpenSrcIntegrati...

And I want to do it in as few calls as possible.  Either a PROC IMPORT or a FILENAME.

Any guidance you can provide is appreciated.

Going one step further, what if it was an .xls?

Thanks in advance-K

4 REPLIES 4
ballardw
Super User

filename testurl url "https://raw.githubusercontent.com/sassoftware/enlighten-integration/master/SAS_Base_OpenSrcIntegrati...";


proc import file=testurl out=work.junk dbms=csv;run;

would be the approach but it times out on me.

Patrick
Opal | Level 21

Your code works perfectly for me with SAS9.4 under Win7 64bit

Tom
Super User Tom
Super User

Seems pretty easy.  Binary format like an Excel file would be harder, you might want to first copy it to a temporary file.

filename testurl url "https://raw.githubusercontent.com/sassoftware/enlighten-integration/master/SAS_Base_OpenSrcIntegrati...";


data want;

infile testurl dsd firstobs=2;

input label pixel0-pixel783 ;

run;

Ksharp
Super User

It is easy to import Binary format like Excel file as well for SAS .Check it out .

http://blogs.sas.com/content/sasdummy/2013/09/17/copy-file-macro/

Xia Keshan

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 9281 views
  • 0 likes
  • 5 in conversation