Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on February 5, 2016 3:28AM
Likes: 0
Replies: 3
To elaborate - Add the file to a managed folder, then create a Python code recipe and add lines like the following to the default recipe code:
from sas7bdat import SAS7BDAT myfilename = '<myfile>.sas7bdat' with SAS7BDAT(myfilename, fh=datafiles.get_download_stream(myfilename)) as reader: <myoutputdatasetname>_df = reader.to_data_frame()
Thanks for sharing this with us @MarkPundurs
!