Creating the SAS dataset fitness
This page provides step by step  instruction on how to create the SAS data set fitness for use in the SAS short course offered by
ITS - Statistical Services.
 

Step 1.    Start SAS

Step 2.    Use your cursor to highlight and then copy the program in bold face type below.

Step 3.    Paste the program into the SAS Program Editor.

Step 4.    Submit program using the running man icon located in the upper right corner of the Program Editor.
 
* Create fitness Dataset Program. ;
* This program creates the fitness dataset. ;
* The data set is written to the sasuser library. ;

** begining of program ;

data sasuser.fitness;

input AGE WEIGHT RUNTIME RSTPULSE RUNPULSE MAXPULSE OXYGEN GROUP;

cards;
57      73.37   12.63   58      174     176     39.407  2
54      79.38   11.17   62      156     165     46.08   2
52      76.32   9.63    48      164     166     45.441  2
50      70.87   8.92    48      146     155     54.625  2
51      67.25   11.08   48      172     172     45.118  2
54      91.63   12.88   44      168     172     39.203  2
51      73.71   10.47   59      186     188     45.79   2
57      59.08   9.93    49      148     155     50.545  2
49      76.32   9.4     56      186     188     48.673  2
48      61.24   11.5    52      170     176     47.92   2
52      82.78   10.5    53      170     172     47.467  2
44      73.03   10.13   45      168     168     50.541  1
45      87.66   14.03   56      186     192     37.388  1
45      66.45   11.12   51      176     176     44.754  1
47      79.15   10.6    47      162     164     47.273  1
54      83.12   10.33   50      166     170     51.855  1
49      81.42   8.95    44      180     185     49.156  1
51      69.63   10.95   57      168     172     40.836  1
51      77.91   10      48      162     168     46.672  1
48      91.63   10.25   48      162     164     46.774  1
49      73.37   10.08   76      168     168     50.388  1
44      89.47   11.37   62      178     182     44.609  0
40      75.07   10.07   62      185     185     45.313  0
44      85.84   8.65    45      156     168     54.297  0
42      68.15   8.17    40      166     172     59.571  0
38      89.02   9.22    55      178     180     49.874  0
47      77.45   11.63   58      176     176     44.811  0
40      75.98   11.95   70      176     180     45.681  0
43      81.19   10.85   64      162     170     49.091  0
44      81.42   13.08   63      174     176     39.442  0
38      81.87   8.63    48      170     186     60.055  0
;

run;

* end of program ;