BookmarkSubscribeRSS Feed
daniel7832
Calcite | Level 5

Thanks! Do you guys offer private one-on-one SAS instruction online?

3 REPLIES 3
stat_sas
Ammonite | Level 13

Hi,

libname new 'C:\Users\Danny\Documents\My SAS Files\9.3'; /* new is the library name assigned to the folder where you have placed your file */

data question03;         /* Temporary sas file */                                                                                                            
set new.question03;  /* reference to the permanent sas datset question03 */
run;                                                                                                                                                                                                                                                                       

proc print data=question03;                                                                                                          
run;

Reeza
Super User

You don't need to "import" or read in a native sas file. You need to be able to reference it.

To do that you have to specify the location of the folder using a libname and then you can print it from there.

I'd recommend saving the files to something that makes sense to organize each project rather than the Documents section.

libname temp "C:\Users\Danny\Documents\My SAS Files\9.3\";

proc print temp.question03;

run;

ballardw
Super User

I would suggest getting a copy of Little SAS Primer as if you have been in a SAS environment for weeks and no one has discussed library other concepts you may want some additional help.

Also the online SAS help has a section on Learning to Use SAS that may be beneficial to review as there are many program examples.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3 replies
  • 819 views
  • 0 likes
  • 4 in conversation