The Sashelp.BMIMen data set was collected from the 1999–2000 and 2001–2002 surveys of men that are published by the National Center for Health
               Statistics. This data set contains the variables BMI and Age. Body mass index (BMI) is defined as the ratio of weight in kilograms to the square of height in meters. BMI is widely used
               to categorize individuals as overweight or underweight. The following steps display information about the data set Sashelp.BMIMen and create Figure B.3: 
            
title 'BMIMen Data'; proc contents data=sashelp.bmimen varnum; ods select position; run; title 'The First Five Observations Out of 3,264'; proc print data=sashelp.bmimen(obs=5); run;
Figure B.3: Body Mass Index for Men