FITNESS Data Set

DATA Step That Creates the FITNESS Data Set

data fitness(label  = 'Exercise/fitness study table'),
   input age weight runtime rstpulse runpulse maxpulse
         oxygen group;
   label age       = 'Age in years'
         weight    = 'Weight in kg'
         runtime   = 'Min. to run 1.5 miles'
         rstpulse  = 'Heart rate while resting'
         runpulse  = 'Heart rate while running'
         maxpulse  = 'Maximum heart rate'
         oxygen    = 'Oxygen consumption'
         group     = 'Experimental group';
   cards;
57 73.37 12.63 58 174 176 39.407    2
54 79.38 11.17 62 156 165 46.080    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.790    2
57 59.08 9.93 49 148 155 50.545     2
...more datalines... .
;;;;

Figure A.15. Partial PROC CONTENTS Output of the FITNESS Data Set
                                    The CONTENTS Procedure

        Data Set Name        WORK.FITNESS                     Observations           31
        Member Type          DATA                             Variables              8
        Engine               V9                               Indexes                0
        Created              Thu, Feb 03, 2005 04:40:55 PM    Observation Length     64
        Last Modified        Thu, Feb 03, 2005 04:40:55 PM    Deleted Observations   0
        Protection                                            Compressed             NO
        Data Set Type                                         Sorted                 NO
        Label                Exercise/fitness study table
        Data Representation  WINDOWS_32
        Encoding             wlatin1  Western (Windows)


                                          Alphabetic List of Variables and Attributes


                   #    Variable    Type    Len    Label

                   1    age         Num       8    Age in years
                   8    group       Num       8    Experimental group
                   6    maxpulse    Num       8    Maximum heart rate
                   7    oxygen      Num       8    Oxygen consumption
                   4    rstpulse    Num       8    Heart rate while resting
                   5    runpulse    Num       8    Heart rate while running
                   3    runtime     Num       8    Min. to run 1.5 miles
                   2    weight      Num       8    Weight in kg

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.138.204.166