Previous Page | Next Page

Example Programs

Creating the Nlits Data Set

/* The mixed_case lets you use an nlit in the data set name.   */
%libcat(nlits, pathname=nlits, opt=mixed_case=yes);

data nlits.'          Stats'n;
   input Price Quantity City  $;
   datalines;
3750  150 Brazil
5000  200 Canada
10250 410 France
;

data nlits.'     Stats2'n;
   input Price Quantity City $;
   datalines;
3750  150 Brazil
5000  200 Canada
10250 410 France
;

Previous Page | Next Page | Top of Page