The physical functioning dataset

This chapter will use data from the National Health and Nutrition Examination Survey (NHANES). This survey collects data in two year cycles for about 10,000 civilian community-dwelling Americans and is available on the CDC website at http://www.cdc.gov/nchs/nhanes/nhanes_questionnaires.htm. The cleaned dataset that we will use in this chapter is available on the Internet at http://scholar.harvard.edu/gerrard/mastering-scientific-computation-r. Please see the terms of use at the CDC's website. We will start by loading the dataset and creating a matrix from the data frame:

phys.func <- read.csv('phys_func.txt')[,c(-1)]
phys.func.mat <-  as.matrix(phys.func)

This dataset includes cleaned data from the years 2003 to 2010 with all missing values removed. Answers that were not missing but answered as unknown or refused have also been removed. Survey respondents are asked how much difficulty they have with the following 20 items (questions are paraphrased here):

  • Managing money
  • Walking for a quarter of a mile
  • Walking up 10 steps
  • Stooping, crouching, or kneeling
  • Lifting or carrying 10 pounds
  • Doing chores around the house
  • Preparing meals
  • Walking from one room to another
  • Standing up from a chair
  • Getting in or out of bed
  • Eating
  • Dressing
  • Standing for two hours
  • Sitting for two hours
  • Reaching up overhead
  • Grasping small objects
  • Going out to spectator events
  • Participating in social activities
  • Relaxing at home
  • Pushing or pulling large objects

Respondents give an answer between 1 and 5, with higher responses indicating more difficulty. As expected, most Americans expressed no difficulty in performing these activities.

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

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