Data Mining And Business Intelligence (2170715)

BE | Semester-7   Winter-2018 | 03/12/2018

Q3) (a)

List and describe methods for handling missing values in data cleaning.

Data Cleaning

  • Real-world data tend to be incomplete, noisy, and inconsistent.
  • Data cleaning (or data cleansing) routines attempt to fill in missing values, smooth out noise while identifying outliers, and correct inconsistencies in the data

Ways to handle missing values.

  1. Ignore the tuple :
    • This is usually done when the class label is missing (assuming the mining task involves classification).
    • This method is not very effective, unless the tuple contains several attributes with missing values.
    • It is especially poor when the percentage of missing values per attribute varies considerably.
    • By ignoring the tuple, we do not make use of the remaining attributes values in the tuple.
    • Such data could have been useful to the task at hand
  2. Fill in the missing value manually :
    • In general, this approach is time consuming and may not be feasible given a large data set with many missing values
  3. Use a global constant to fill in the missing value :
    • Replace all missing attribute values by the same constant such as a label like “Unknown” or 1.
    • If missing values are replaced by, say, “Unknown,” then the mining program may mistakenly think that they form an interesting concept, since they all have a value in common—that of “Unknown.” Hence, although this method is simple, it is not foolproof.
  4. Use a measure of central tendency for the attribute (e.g., the mean or median) to fill in the missing value:
    • For normal (symmetric) data distributions, the mean can be used, while skewed data distribution should employ the median
    • For example, suppose that the data distribution regarding the income of AllElectronics customers is symmetric and that the mean income is $56,000.
    • Use this value to replace the missing value for income
  5. Use the attribute mean or median for all samples belonging to the same class as the given tuple :
    • For example, if classifying customers according to credit risk, we may replace the missing value with the mean income value for customers in the same credit risk category as that of the given tuple.
    • If the data distribution for a given class is skewed, the median value is a better choice
  6. Use the most probable value to fill in the missing value :
    • This may be determined with regression, inference-based tools using a Bayesian formalism, or decision tree induction. For example, using the other customer attributes in your data set, you may construct a decision tree to predict the missing values for income