Can I download the sashelp.shoes and sashelp.heart data sets for practice? If yes, can someone give a linkage or show me how to download them?
Thanks!
These are automatically provided for any SAS installation. You shouldn't need to download the files and you shouldn't need to do anything specific to access them. Here's a simple example
proc print data=sashelp.shoes;
run;
These are automatically provided for any SAS installation. You shouldn't need to download the files and you shouldn't need to do anything specific to access them. Here's a simple example
proc print data=sashelp.shoes;
run;
Sorry. I forgot to mention that I am using SAS studio university edition. I can not find a data set like sashelp.shoes or sashelp.heart.
So are you saying that the code I provided does not work in SAS Studio? If so, show us the LOG.
Hi PaigeMiller,
You are right. I can find them in under the help library.
it is easy to create a new dataset through
data test.shoes1;
set sashelp.shoes;
run;
Thanks!
This is a knowledge-sharing community for SAS Certified Professionals and anyone who wants to learn more about becoming SAS Certified. Ask questions and get answers fast. Share with others who are interested in certification and who are studying for certifications.To get the most from your community experience, use these getting-started resources:
Community Do's and Don'ts
How to add SAS syntax to your post
How to get fast, helpful answers
Ready to level-up your skills? Choose your own adventure.