Example 3: Navigating the Directory and Listing the Entries
Features:ODS DOCUMENT statement option
NAME=
DOC statement option
NAME=
LIST statement options
entry
LEVELS=
DETAILS
DIR statement option
path
Procedure output: PROC DOCUMENT
ODS
destinations:
DOCUMENT , LISTING
Details
This example shows you how to do these tasks:
•name an ODS document
•see what ODS documents exist
•open a document for browsing or editing purposes
•list one or more entries
•change directories
Program
options nodate nonumber;
data distrdata;
drop n;
label Normal_x='Normal Random Variable'
Exponential_x='Exponential Random Variable';
do n=1 to 100;
Normal_x=10*rannor(53124)+50;
Exponential_x=ranexp(18746363); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.