1 / 13

STAT 3130 Statistical Methods II

STAT 3130 Statistical Methods II. Missing Data and Imputation. STAT3130 – Missing Data. Rarely does “real” data come to you without any missing values. And “missing” can take several forms: Truly “missing” – meaning no value is present;

zuzana
Télécharger la présentation

STAT 3130 Statistical Methods II

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. STAT 3130Statistical Methods II Missing Data and Imputation

  2. STAT3130 – Missing Data Rarely does “real” data come to you without any missing values. And “missing” can take several forms: • Truly “missing” – meaning no value is present; • Coded – meaning that there is a “value” but it means something different from the scale of the data; • Miscoded – meaning that there is a “value”, but it is wrong...

  3. STAT3130 – Missing Data Lets take each one individually… • Truly Missing Data. Consider the GSS08 dataset. You will see missing data which is character as well as numeric. Note that missing values for a character variable are identified in SAS as a blank, while missing values for numeric variables are identified in SAS as a “.”. This is the most obvious form of missing data. Note that you can check for truly missing data by using the following SAS Code: Proc Means data = data nmiss; Var var; Run; Proc Freq data = data; Tables var; Run;

  4. STAT3130 – Missing Data Lets take each one individually… • Coded Data Frequently, when data is input into a database, any values which were missing, incorrect, illegible, etc. will be coded at the time of entry. These codes are typically (but not always) provided to you in a data dictionary. Coded values are sometimes easy to spot (the codes are character when the rest of the data is numeric) or not easy to spot (the coded values are numeric, but not part of the “true” range of the data). Consider the GSS08 dataset again. Take a look at the age variable – there are coded values there. What are they and how would you know?

  5. STAT3130 – Missing Data Lets take each one individually… • MisCoded Data Humans make mistakes – sometimes in weird ways computers make mistakes too. When data is entered incorrectly, this can really mess things up when you are trying to run a model or a test. Consider the age variable again in the GSS08 dataset…

  6. STAT3130 – Missing Data With all of these issues, you also need to determine if the data is missing: • Completely randomly – also called MCAR. This means that the missing values have no pattern. In other words, the missing values cannot be predicted in any way. • Missing at random – also called MAR. This means that the missing values can be predicted using the other data available for an observation. In these instances, you may want to assign a categorical value (when the variable is categorical) with an indicator of “MISSING” to identify these observations differently. • Missing that depends upon latent variables. For example, there could be a latent (unobserved) variable which is highly correlated with the missing values. A familiar example from medical studies is that if a particular treatment causes discomfort, a patient is more likely to drop out of the study. This “missingness” is not at random (unless “discomfort” is measured and observed for all patients).

  7. STAT3130 – Missing Data In all instances, the data values need to be replaced or “imputed” with a logical, meaningful value. Before we discuss the strategies for imputation…lets make a quick point regarding why this needs to be done… All analytical software packages – including SAS – require “complete case” for an observation to be included in the analysis. This means that if there are 100 variables and an observation is missing just ONE value, the entire case is removed from the analysis. And, you lose the other 99 perfectly good values. 

  8. STAT3130 – Missing Data Think about this…if you are missing only 1% of your data and you have 1,000,000 observations and 50 variables, you could lose as much as 395,000 observations when you go to model… [total observations – (((1-percent missing)^variables)*total observations)] or [1,000,000 – (((1-.01)^50)*1,000,000)] = 394,994 That is A LOT of valid data that you would lose! And, it could bias your results.

  9. STAT3130 – Imputation We need a way to replace those values – logically. Many options for imputation exist. Here are four of the primary methods: • Mean based imputation • Median based imputation • Stratified imputation • Regressed imputation – difficult with MCAR Each of these will be discussed briefly in turn.

  10. STAT3130 – Imputation • Imputation Strategies: • Mean Based Imputation – this process is the most simple. This involves replacing the missing values with the mean of the variable. But…before you do this, think through these questions: • How would the distribution of the variable affect/and be affected by this imputation decision? • What happens to the mean of the variable? • What happens to the standard deviation of the variable? • How might the results be biased?

  11. STAT3130 – Imputation • Imputation Strategies: • Median Based Imputation – this process is also very simple. This involves replacing the missing values with the median of the variable. But…before you do this, think through these questions: • How would the distribution of the variable affect/and be affected by this imputation decision? • What happens to the mean of the variable? • What happens to the standard deviation of the variable? • How might the results be biased?

  12. STAT3130 – Imputation • Imputation Strategies: • Stratified Imputation – this process is slightly more involved. This involves replacing the missing values with the mean or median of the variable but with consideration for similar strata of observations. But…before you do this, think through these questions: • How would the distribution of the variable affect/and be affected by this imputation decision? • What happens to the mean of the variable? • What happens to the standard deviation of the variable? • How might the results be biased?

  13. STAT3130 – Imputation • Imputation Strategies: • Regressed Imputation – This process involves actually predicting the value of the missing values using Regression. It works well if: the variables are related to each other and if you only have one or two variables with missing data. But…before you do this, think through these questions: • How would the distribution of the variable affect/and be affected by this imputation decision? • What happens to the mean of the variable? • What happens to the standard deviation of the variable? • How might the results be biased?

More Related