SAS Procedures

Help using Base SAS procedures
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

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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
  • 9027 views
  • 0 likes
  • 5 in conversation