Meta Search
search across all the following databases:
Data Catalog
Data and documentation
KnowledgeBase
Common questions and answers.
Resources
Entire collection of data resources.
Measuring Marriage & Divorce among Same-Sex Couples
I need a reminder of how to read *.ssd01 files in SAS?
Here's some code to read in an *ssd01 file:
libname lib 'w:\lisan\Training';
data a;
set lib.test;
proc freq;
tables sex race;
run;
The name of the *.ssd01 file is test.ssd01 It is located in the directory mentioned on the first line of the program.