data preprocessing dr. bernard chen ph.d. university of central arkansas

40
Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Upload: theodora-montgomery

Post on 05-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data Preprocessing

Dr. Bernard Chen Ph.D.University of Central Arkansas

Page 2: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Outline Introduction Descriptive Data Summarization Data Cleaning

Missing value Noise data

Data Integration Redundancy

Data Transformation

Page 3: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Knowledge Discovery (KDD) Process

Data mining—core of knowledge discovery process

Data Cleaning

Data Integration

Databases

Data Warehouse

Task-relevant Data

Selection

Data Mining

Pattern Evaluation

Page 4: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Knowledge Process1. Data cleaning – to remove noise and

inconsistent data2. Data integration – to combine multiple

source 3. Data selection – to retrieve relevant data

for analysis4. Data transformation – to transform data

into appropriate form for data mining5. Data mining6. Evaluation7. Knowledge presentation

Page 5: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Preprocess the data Image that you are a manager at

ALLElectronics and have been charger with analyzing the company’s data

Then you realize: Several of the attributes for carious tuples have

no recorded value Some information you want is not on recorded Some values are reported as incomplete,

noisy, and inconsistent

Welcome to real world!!

Page 6: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Data Preprocessing?

Data in the real world is dirty incomplete: lacking attribute values, lacking

certain attributes of interest, or containing only aggregate data

e.g., occupation=“ ” noisy: containing errors or outliers

e.g., Salary=“-10” inconsistent: containing discrepancies in codes

or names e.g., Age=“42” Birthday=“03/07/1997” e.g., Was rating “1,2,3”, now rating “A, B, C” e.g., discrepancy between duplicate records

Page 7: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Is Data Dirty?

Incomplete data may come from “Not applicable” data value when

collected Different considerations between the

time when the data was collected and when it is analyzed.

Human/hardware/software problems

Page 8: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Is Data Dirty?

Noisy data (incorrect values) may come from Faulty data collection instruments Human or computer error at data

entry Errors in data transmission

Page 9: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Is Data Dirty?

Inconsistent data may come from Different data sources Functional dependency violation (e.g.,

modify some linked data)

Duplicate records also need data cleaning

Page 10: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Why Is Data Preprocessing Important?

No quality data, no quality mining results! Quality decisions must be based on quality data e.g., duplicate or missing data may cause

incorrect or even misleading statistics.

Data extraction, cleaning, and transformation comprises the majority of the work of building a data warehouse

Page 11: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Major Tasks in Data Preprocessing Data cleaning

Fill in missing values, smooth noisy data, identify or remove outliers, and resolve inconsistencies

Data integration Integration of multiple databases, data cubes, or files

Data transformation Normalization and aggregation

Data reduction Obtains reduced representation in volume but

produces the same or similar analytical results

Page 12: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Forms of Data Preprocessing

Page 13: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Outline Introduction Descriptive Data Summarization Data Cleaning

Missing value Noise data

Data Integration Redundancy

Data Transformation

Page 14: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Descriptive data summarization

Motivation To better understand the data:

central tendency, variation and spread

Data dispersion characteristics median, max, min, quantiles, outliers,

variance, etc.

Page 15: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Descriptive data summarization

Numerical dimensions correspond to sorted intervals Data dispersion: analyzed with

multiple granularities of precision

Boxplot or quantile analysis on sorted intervals

Page 16: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Measuring the Central Tendency Mean

Average value of the data

Median Middle value of the data

Mode Value that occurs most frequently in the data

Dataset with one, two or three modes are respectively

called unimodal, bimodal, and trimodal

Page 17: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Symmetric vs. Skewed Data

Page 18: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Measuring the Dispersion of Data

Quartiles, outliers and boxplots The median is the 50th percentile

Quartiles: Q1 (25th percentile), Q3 (75th

percentile)

Inter-quartile range (IQR): IQR = Q3 – Q1

Outlier: usually, a value higher/lower than

1.5 x IQR

Page 19: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Boxplot Analysis

Five-number summary of a distribution:Minimum, Q1, M, Q3, Maximum

Boxplot Data is represented with a box The ends of the box are at the first and third

quartiles, i.e., the height of the box is IRQ The median is marked by a line within the box Whiskers: two lines outside the box extend to

Minimum and Maximum

Page 20: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Boxplot Analysis

Page 21: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Boxplot Analysis The median for each dataset is

indicated by the black center line, and the first and third quartiles are the edges of the red area, which is known as the inter-quartile range (IQR).

Points at a greater distance from the median than 1.5 times the IQR are plotted individually as asterisks.

Page 22: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Histogram Analysis

Graph displays of basic statistical class descriptions Frequency histograms

A univariate graphical method Consists of a set of rectangles that reflect

the counts or frequencies of the classes present in the given data

Page 23: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Histogram Analysis

Page 24: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Outline Introduction Descriptive Data Summarization Data Cleaning

Missing value Data Integration

Redundancy Data Transformation

Page 25: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data Cleaning

Importance “Data cleaning is one of the three

biggest problems in data warehousing”—Ralph Kimball

“Data cleaning is the number one problem in data warehousing”—DCI survey

Page 26: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data Cleaning

Data cleaning tasks

Fill in missing values

Identify outliers and smooth out noisy

data

Page 27: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Missing Data

Missing data may be due to equipment malfunction inconsistent with other recorded data and thus deleted data not entered due to misunderstanding certain data may not be considered important at the time

of entry not register history or changes of the data

It is important to note that, a missing value may not always imply an error. (for example, Null-allow attri. )

Page 28: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

How to Handle Missing Data?

Ignore the tuple: usually done when class

label is missing (assuming the tasks in

classification—not effective when the

percentage of missing values per attribute

varies considerably.

Fill in the missing value manually: tedious

+ infeasible

Page 29: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

How to Handle Missing Data?

Fill in it automatically with a global constant : e.g., “unknown”, a new

class?!

the attribute mean

the attribute mean for all samples belonging to

the same class: smarter

the most probable value: inference-based such

as Bayesian formula or decision tree

Page 30: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Outline Introduction Descriptive Data Summarization Data Cleaning

Missing value Noise data

Data Integration Redundancy

Data Transformation

Page 31: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data integration

Data integration: Combines data from multiple sources

into a coherent store

Page 32: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data integration problems Schema integration:

e.g., A.cust-id B.cust-# Integrate metadata from different sources

Detecting and resolving data value conflicts For the same real world entity, attribute values

from different sources are different Possible reasons: different representations,

different scales, e.g., metric vs. British units

Page 33: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Redundant data

Redundant data occur often when integration of multiple databases Object identification: The same attribute or

object may have different names in different databases

Derivable data: One attribute may be a “derived” attribute in another table, e.g., annual revenue

Page 34: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Redundant data

Redundant attributes may be able to be detected by correlation analysis

Careful integration of the data from multiple sources may help reduce/avoid redundancies and inconsistencies and improve mining speed and quality

Page 35: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Outline Introduction Descriptive Data Summarization Data Cleaning

Missing value Noise data

Data Integration Redundancy

Data Transformation

Page 36: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Data Transformation

Data Transformation can involve the following: Smoothing: remove noise from the data,

including binning, regression and clustering

Aggregation Generalization Normalization Attribute construction

Page 37: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Normalization

Page 38: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Normalization

Min-max normalization Z-score normalization Decimal normalization

Page 39: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Min-max normalization

Min-max normalization: to

[new_minA, new_maxA]

Ex. Let income range $12,000 to $98,000 normalized to [0.0, 1.0]. Then $73,000 is mapped to

AAA

AA

A

minnewminnewmaxnewminmax

minvv _)__('

716.00)00.1(000,12000,98

000,12600,73

Page 40: Data Preprocessing Dr. Bernard Chen Ph.D. University of Central Arkansas

Z-score normalization

Z-score normalization (μ: mean, σ: standard deviation):

Ex. Let μ = 54,000, σ = 16,000. Then

A

Avv

'

225.1000,16

000,54600,73