Thanks to Reeza's motivating me, I succeeded in importing an Excel dataset, and converting it into a work dataset. How do I now convert the work dataset into a permanent dataset within a dubdirectory of myfolders? Also, please let me know exactly how I can find your response in this community blog center, so that I can comment on it? I was not able to find your response to my prior question. I just had the response in theemail you sent me.
To create the work dataset I followed the following directions:
Your original post is here. You can get to it by clicking your name icon and it will take you to your profile page.
To create a 'permanent' library set up a library in SAS and then assign the data to the new library.
libname myWork '/folders/myfolders/myWork/';
data myWork.myDataset;
set myDataset;
run;
Thanks very much!
I see someone has provided code to read and copy the work.data_set
no need to read it, just
proc copy in = work
out = my_lib;
select my_data;
Ron Fehd CPU seconds counter
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.