- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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!
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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;
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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;
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
So are you saying that the code I provided does not work in SAS Studio? If so, show us the LOG.
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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!