SlideShare a Scribd company logo
1 of 48
Data Preprocessing
Data Preprocessing
ī° Why preprocess the data?
ī° Data cleaning
ī° Data integration and transformation
ī° Data reduction
ī° Discretization and concept hierarchy
generation
ī° Summary
Why Data Preprocessing?
ī° Data in the real world is dirty
īŽ incomplete: lacking attribute values, lacking certain
attributes of interest, or containing only aggregate data
īŽ noisy: containing errors or outliers
īŽ inconsistent: containing discrepancies in codes or
names
ī° No quality data, no quality mining results!
īŽ Quality decisions must be based on quality data
īŽ Data warehouse needs consistent integration of quality
data
īŽ Required for both OLAP and Data Mining!
Why can Data be Incomplete?
ī° Attributes of interest are not available (e.g.,
customer information for sales transaction data)
ī° Data were not considered important at the time
of transactions, so they were not recorded!
ī° Data not recorder because of misunderstanding
or malfunctions
ī° Data may have been recorded and later deleted!
ī° Missing/unknown values for some data
Why can Data be Noisy/Inconsistent?
ī° Faulty instruments for data collection
ī° Human or computer errors
ī° Errors in data transmission
ī° Technology limitations (e.g., sensor data come at
a faster rate than they can be processed)
ī° Inconsistencies in naming conventions or data
codes (e.g., 2/5/2002 could be 2 May 2002 or 5
Feb 2002)
ī° Duplicate tuples, which were received twice
should also be removed
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
ī° Data discretization
īŽ Part of data reduction but with particular importance,
especially for numerical data
outliers=exceptions!
Forms of data preprocessing
Data Preprocessing
ī° Why preprocess the data?
ī° Data cleaning
ī° Data integration and transformation
ī° Data reduction
ī° Discretization and concept hierarchy
generation
ī° Summary
Data Cleaning
ī° Data cleaning tasks
īŽ Fill in missing values
īŽ Identify outliers and smooth out noisy data
īŽ Correct inconsistent data
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?
ī° Use a global constant to fill in the missing value: e.g.,
“unknown”, a new class?!
ī° Use the attribute mean to fill in the missing value
ī° Use the attribute mean for all samples belonging to the same
class to fill in the missing value: smarter
ī° Use the most probable value to fill in the missing value:
inference-based such as Bayesian formula or decision tree
How to Handle Missing Data?
Age Income Religion Gender
23 24,200 Muslim M
39 ? Christian F
45 45,390 ? F
Fill missing values using aggregate functions (e.g., average) or
probabilistic estimates on global value distribution
E.g., put the average income here, or put the most probable income
based on the fact that the person is 39 years old
E.g., put the most frequent religion here
Noisy Data
ī° Noise: random error or variance in a measured
variable
ī° Incorrect attribute values may exist due to
īŽ faulty data collection instruments
īŽ data entry problems
īŽ data transmission problems
īŽ technology limitation
īŽ inconsistency in naming convention
ī° Other data problems which requires data cleaning
īŽ duplicate records
īŽ incomplete data
īŽ inconsistent data
How to Handle Noisy Data?
Smoothing techniques
ī° Binning method:
īŽ first sort data and partition into (equi-depth) bins
īŽ then one can smooth by bin means, smooth by bin
median, smooth by bin boundaries, etc.
ī° Clustering
īŽ detect and remove outliers
ī° Combined computer and human inspection
īŽ computer detects suspicious values, which are then
checked by humans
ī° Regression
īŽ smooth by fitting the data into regression functions
ī° Use Concept hierarchies
īŽ use concept hierarchies, e.g., price value -> “expensive”
Simple Discretization Methods: Binning
ī° Equal-width (distance) partitioning:
īŽ It divides the range into N intervals of equal size:
uniform grid
īŽ if A and B are the lowest and highest values of the
attribute, the width of intervals will be: W = (B-A)/N.
īŽ The most straightforward
īŽ But outliers may dominate presentation
īŽ Skewed data is not handled well.
ī° Equal-depth (frequency) partitioning:
īŽ It divides the range into N intervals, each containing
approximately same number of samples
īŽ Good data scaling – good handing of skewed data
Simple Discretization Methods: Binning
Example: customer ages
0-10 10-20 20-30 30-40 40-50 50-60 60-70 70-80
Equi-width
binning:
number
of values
0-22 22-31
44-4832-38
38-44 48-55
55-62
62-80
Equi-width
binning:
Smoothing using Binning Methods
* Sorted data for price (in dollars): 4, 8, 9, 15, 21, 21, 24,
25, 26, 28, 29, 34
* Partition into (equi-depth) bins:
- Bin 1: 4, 8, 9, 15
- Bin 2: 21, 21, 24, 25
- Bin 3: 26, 28, 29, 34
* Smoothing by bin means:
- Bin 1: 9, 9, 9, 9
- Bin 2: 23, 23, 23, 23
- Bin 3: 29, 29, 29, 29
* Smoothing by bin boundaries: [4,15],[21,25],[26,34]
- Bin 1: 4, 4, 4, 15
- Bin 2: 21, 21, 25, 25
- Bin 3: 26, 26, 26, 34
Cluster Analysis
cluster
outlier
salary
age
Regression
x
y
y = x + 1
X1
Y1
(salary)
(age)
Example of linear regression
Inconsistent Data
ī° Inconsistent data are handled by:
īŽ Manual correction (expensive and tedious)
īŽ Use routines designed to detect inconsistencies
and manually correct them. E.g., the routine may
use the check global constraints (age>10) or
functional dependencies
īŽ Other inconsistencies (e.g., between names of
the same attribute) can be corrected during the
data integration process
Data Preprocessing
ī° Why preprocess the data?
ī° Data cleaning
ī° Data integration and transformation
ī° Data reduction
ī° Discretization and concept hierarchy
generation
ī° Summary
Data Integration
ī° Data integration:
īŽ combines data from multiple sources into a coherent store
ī° Schema integration
īŽ integrate metadata from different sources
ī° metadata: data about the data (i.e., data descriptors)
īŽ Entity identification problem: identify real world entities
from multiple data sources, e.g., A.cust-id ≡ B.cust-#
ī° Detecting and resolving data value conflicts
īŽ for the same real world entity, attribute values from
different sources are different (e.g., J.D.Smith and Jonh
Smith may refer to the same person)
īŽ possible reasons: different representations, different
scales, e.g., metric vs. British units (inches vs. cm)
Handling Redundant
Data in Data Integration
ī° Redundant data occur often when integration of
multiple databases
īŽ The same attribute may have different names in different
databases
īŽ One attribute may be a “derived” attribute in another
table, e.g., annual revenue
ī° Redundant data 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
Data Transformation
ī° Smoothing: remove noise from data
ī° Aggregation: summarization, data cube
construction
ī° Generalization: concept hierarchy climbing
ī° Normalization: scaled to fall within a small,
specified range
īŽ min-max normalization
īŽ z-score normalization
īŽ normalization by decimal scaling
ī° Attribute/feature construction
īŽ New attributes constructed from the given ones
Normalization: Why normalization?
ī° Speeds-up some learning techniques (ex.
neural networks)
ī° Helps prevent attributes with large ranges
outweigh ones with small ranges
īŽ Example:
ī° income has range 3000-200000
ī° age has range 10-80
ī° gender has domain M/F
Data Transformation: Normalization
ī° min-max normalization
īŽ e.g. convert age=30 to range 0-1, when
min=10,max=80. new_age=(30-10)/(80-10)=2/7
ī° z-score normalization
ī° normalization by decimal scaling
AAA
AA
A
minnewminnewmaxnew
minmax
minv
v _)__(' +−
−
−
=
A
A
devstand_
meanv
v
−
='
j
v
v
10
'= Where j is the smallest integer such that Max(| |)<1'v
Data Preprocessing
ī° Why preprocess the data?
ī° Data cleaning
ī° Data integration and transformation
ī° Data reduction
ī° Discretization and concept hierarchy
generation
ī° Summary
Data Reduction Strategies
ī° Warehouse may store terabytes of data: Complex
data analysis/mining may take a very long time to
run on the complete data set
ī° Data reduction
īŽ Obtains a reduced representation of the data set that is
much smaller in volume but yet produces the same (or
almost the same) analytical results
ī° Data reduction strategies
īŽ Data cube aggregation
īŽ Dimensionality reduction
īŽ Data compression
īŽ Numerosity reduction
īŽ Discretization and concept hierarchy generation
Data Cube Aggregation
ī° The lowest level of a data cube
īŽ the aggregated data for an individual entity of interest
īŽ e.g., a customer in a phone calling data warehouse.
ī° Multiple levels of aggregation in data cubes
īŽ Further reduce the size of data to deal with
ī° Reference appropriate levels
īŽ Use the smallest representation which is enough to solve
the task
ī° Queries regarding aggregated information should be
answered using data cube, when possible
Dimensionality Reduction
ī° Feature selection (i.e., attribute subset selection):
īŽ Select a minimum set of features such that the probability
distribution of different classes given the values for those
features is as close as possible to the original distribution
given the values of all features
īŽ reduce # of patterns in the patterns, easier to understand
ī° Heuristic methods (due to exponential # of
choices):
īŽ step-wise forward selection
īŽ step-wise backward elimination
īŽ combining forward selection and backward elimination
īŽ decision-tree induction
Heuristic Feature Selection Methods
ī° There are 2d
possible sub-features of d features
ī° Several heuristic feature selection methods:
īŽ Best single features under the feature independence
assumption: choose by significance tests.
īŽ Best step-wise feature selection:
ī° The best single-feature is picked first
ī° Then next best feature condition to the first, ...
īŽ Step-wise feature elimination:
ī° Repeatedly eliminate the worst feature
īŽ Best combined feature selection and elimination:
īŽ Optimal branch and bound:
ī° Use feature elimination and backtracking
Example of Decision Tree Induction
Initial attribute set:
{A1, A2, A3, A4, A5, A6}
A4 ?
A1? A6?
Class 1 Class 2 Class 1 Class 2
> Reduced attribute set: {A1, A4, A6}
Data Compression
Original Data Compressed
Data
lossless
Original Data
Approximated
lossy
ī° Given N data vectors from k-dimensions, find c
<= k orthogonal vectors that can be best used
to represent data
īŽ The original data set is reduced to one consisting of N
data vectors on c principal components (reduced
dimensions)
ī° Each data vector is a linear combination of the c
principal component vectors
ī° Works for numeric data only
ī° Used when the number of dimensions is large
Principal Component Analysis or
Karhuren-Loeve (K-L) method
X1
X2
Y1
Y2
Principal Component Analysis
X1, X2: original axes (attributes)
Y1,Y2: principal components
significant component
(high variance)
Order principal components by significance and eliminate weaker ones
Numerosity Reduction:
Reduce the volume of data
ī° Parametric methods
īŽ Assume the data fits some model, estimate model
parameters, store only the parameters, and discard the
data (except possible outliers)
īŽ Log-linear models: obtain value at a point in m-D
space as the product on appropriate marginal
subspaces
ī° Non-parametric methods
īŽ Do not assume models
īŽ Major families: histograms, clustering, sampling
Histograms
ī° A popular data
reduction technique
ī° Divide data into
buckets and store
average (or sum) for
each bucket
ī° Can be constructed
optimally in one
dimension using
dynamic
programming
ī° Related to
quantization
problems.
0
5
10
15
20
25
30
35
40
10000 30000 50000 70000 90000
Histogram types
ī° Equal-width histograms:
īŽ It divides the range into N intervals of equal size
ī° Equal-depth (frequency) partitioning:
īŽ It divides the range into N intervals, each containing
approximately same number of samples
ī° V-optimal:
īŽ It considers all histogram types for a given number of
buckets and chooses the one with the least variance.
ī° MaxDiff:
īŽ After sorting the data to be approximated, it defines the
borders of the buckets at points where the adjacent
values have the maximum difference
ī° Example: split 1,1,4,5,5,7,9,14,16,18,27,30,30,32 to three
buckets
MaxDiff 27-18 and 14-9
Histograms
Clustering
ī° Partitions data set into clusters, and models it by
one representative from each cluster
ī° Can be very effective if data is clustered but not
if data is “smeared”
ī° There are many choices of clustering definitions
and clustering algorithms, further detailed in
Chapter 7
Cluster Analysis
cluster
outlier
salary
age
the distance between points in the
same cluster should be small
the distance between points in
different clusters should be large
Hierarchical Reduction
ī° Use multi-resolution structure with different
degrees of reduction
ī° Hierarchical clustering is often performed but tends
to define partitions of data sets rather than
“clusters”
ī° Parametric methods are usually not amenable to
hierarchical representation
ī° Hierarchical aggregation
īŽ An index tree hierarchically divides a data set into
partitions by value range of some attributes
īŽ Each partition can be considered as a bucket
īŽ Thus an index tree with aggregates stored at each node is
a hierarchical histogram
Data Preprocessing
ī° Why preprocess the data?
ī° Data cleaning
ī° Data integration and transformation
ī° Data reduction
ī° Discretization and concept hierarchy
generation
ī° Summary
Discretization
ī° Three types of attributes:
īŽ Nominal — values from an unordered set
īŽ Ordinal — values from an ordered set
īŽ Continuous — real numbers
ī° Discretization:
īŽ divide the range of a continuous attribute into
intervals
īŽ why?
ī° Some classification algorithms only accept
categorical attributes.
ī° Reduce data size by discretization
ī° Prepare for further analysis
Discretization and Concept hierachy
ī° Discretization
īŽ reduce the number of values for a given continuous
attribute by dividing the range of the attribute into
intervals. Interval labels can then be used to replace
actual data values.
ī° Concept hierarchies
īŽ reduce the data by collecting and replacing low level
concepts (such as numeric values for the attribute age)
by higher level concepts (such as young, middle-aged,
or senior).
Discretization and concept hierarchy
generation for numeric data
ī° Binning/Smoothing (see sections before)
ī° Histogram analysis (see sections before)
ī° Clustering analysis (see sections before)
ī° Entropy-based discretization
ī° Segmentation by natural partitioning
Entropy-Based Discretization
ī° Given a set of samples S, if S is partitioned into
two intervals S1 and S2 using boundary T, the
information gain I(S,T) after partitioning is
ī° The boundary that maximizes the information gain
over all possible boundaries is selected as a binary
discretization.
ī° The process is recursively applied to partitions
obtained until some stopping criterion is met, e.g.,
ī° Experiments show that it may reduce data size
and improve classification accuracy
)(
||
||
)(
||
||
),( 2
2
1
1
S
S
S
S Ent
S
Ent
S
TSI +=
δ>− ),()( STISEnt
)(log)( 2
1
1 i
m
i
i ppSEnt ∑=
−=Entropy:
Segmentation by natural partitioning
The 3-4-5 rule can be used to segment numerical data into
relatively uniform, “natural” intervals.
* If an interval covers 3, 6, 7 or 9 distinct values at the most
significant digit, partition the range into 3 equiwidth intervals
for 3,6,9 or 2-3-2 for 7
* If it covers 2, 4, or 8 distinct values at the most significant
digit, partition the range into 4 equiwidth intervals
* If it covers 1, 5, or 10 distinct values at the most significant
digit, partition the range into 5 equiwidth intervals
ī° Users often like to see numerical ranges partitioned into
relatively uniform, easy-to-read intervals that appear intuitive
or “natural”. E.g., [50-60] better than [51.223-60.812]
The rule can be recursively applied for the resulting intervals
Concept hierarchy generation for
categorical data
ī° Categorical attributes: finite, possibly large domain, with no
ordering among the values
īŽ Example: item type
ī° Specification of a partial ordering of attributes explicitly at
the schema level by users or experts
īŽ Example: location is split by domain experts to
street<city<state<country
ī° Specification of a portion of a hierarchy by explicit data
grouping
ī° Specification of a set of attributes, but not of their partial
ordering
ī° Specification of only a partial set of attributes
Specification of a set of attributes
Concept hierarchy can be automatically
generated based on the number of distinct
values per attribute in the given attribute set.
The attribute with the most distinct values is
placed at the lowest level of the hierarchy.
country
province_or_ state
city
street
15 distinct values
65 distinct
values
3567 distinct values
674,339 distinct values

More Related Content

What's hot

Lecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxLecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxGauravSonawane51
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessingGajanand Sharma
 
Data Mining: Concepts and Techniques (3rd ed.) - Chapter 3 preprocessing
Data Mining:  Concepts and Techniques (3rd ed.)- Chapter 3 preprocessingData Mining:  Concepts and Techniques (3rd ed.)- Chapter 3 preprocessing
Data Mining: Concepts and Techniques (3rd ed.) - Chapter 3 preprocessingSalah Amean
 
Data PreProcessing
Data PreProcessingData PreProcessing
Data PreProcessingtdharmaputhiran
 
Data mining an introduction
Data mining an introductionData mining an introduction
Data mining an introductionDr-Dipali Meher
 
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Md. Main Uddin Rony
 
Data Preprocessing || Data Mining
Data Preprocessing || Data MiningData Preprocessing || Data Mining
Data Preprocessing || Data MiningIffat Firozy
 
Confusion Matrix
Confusion MatrixConfusion Matrix
Confusion MatrixRajat Gupta
 
Performance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsPerformance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsKush Kulshrestha
 
Supervised learning
Supervised learningSupervised learning
Supervised learningAlia Hamwi
 
Unit 3 part ii Data mining
Unit 3 part ii Data miningUnit 3 part ii Data mining
Unit 3 part ii Data miningDhilsath Fathima
 
Data Mining: Concepts and Techniques (3rd ed.) — Chapter _04 olap
Data Mining:  Concepts and Techniques (3rd ed.)— Chapter _04 olapData Mining:  Concepts and Techniques (3rd ed.)— Chapter _04 olap
Data Mining: Concepts and Techniques (3rd ed.) — Chapter _04 olapSalah Amean
 
Chapter 4 Classification
Chapter 4 ClassificationChapter 4 Classification
Chapter 4 ClassificationKhalid Elshafie
 
Data preprocessing in Machine learning
Data preprocessing in Machine learning Data preprocessing in Machine learning
Data preprocessing in Machine learning pyingkodi maran
 
Covering (Rules-based) Algorithm
Covering (Rules-based) AlgorithmCovering (Rules-based) Algorithm
Covering (Rules-based) AlgorithmZHAO Sam
 
What Is DATA MINING(INTRODUCTION)
What Is DATA MINING(INTRODUCTION)What Is DATA MINING(INTRODUCTION)
What Is DATA MINING(INTRODUCTION)Pratik Tambekar
 
01 Data Mining: Concepts and Techniques, 2nd ed.
01 Data Mining: Concepts and Techniques, 2nd ed.01 Data Mining: Concepts and Techniques, 2nd ed.
01 Data Mining: Concepts and Techniques, 2nd ed.Institute of Technology Telkom
 

What's hot (20)

Confusion Matrix Explained
Confusion Matrix ExplainedConfusion Matrix Explained
Confusion Matrix Explained
 
Lecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxLecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptx
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Data Mining: Concepts and Techniques (3rd ed.) - Chapter 3 preprocessing
Data Mining:  Concepts and Techniques (3rd ed.)- Chapter 3 preprocessingData Mining:  Concepts and Techniques (3rd ed.)- Chapter 3 preprocessing
Data Mining: Concepts and Techniques (3rd ed.) - Chapter 3 preprocessing
 
04 olap
04 olap04 olap
04 olap
 
Data PreProcessing
Data PreProcessingData PreProcessing
Data PreProcessing
 
Data mining an introduction
Data mining an introductionData mining an introduction
Data mining an introduction
 
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
 
Data Preprocessing || Data Mining
Data Preprocessing || Data MiningData Preprocessing || Data Mining
Data Preprocessing || Data Mining
 
Confusion Matrix
Confusion MatrixConfusion Matrix
Confusion Matrix
 
Performance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsPerformance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning Algorithms
 
Supervised learning
Supervised learningSupervised learning
Supervised learning
 
Unit 3 part ii Data mining
Unit 3 part ii Data miningUnit 3 part ii Data mining
Unit 3 part ii Data mining
 
Data Mining: Concepts and Techniques (3rd ed.) — Chapter _04 olap
Data Mining:  Concepts and Techniques (3rd ed.)— Chapter _04 olapData Mining:  Concepts and Techniques (3rd ed.)— Chapter _04 olap
Data Mining: Concepts and Techniques (3rd ed.) — Chapter _04 olap
 
Chapter 4 Classification
Chapter 4 ClassificationChapter 4 Classification
Chapter 4 Classification
 
Data preprocessing in Machine learning
Data preprocessing in Machine learning Data preprocessing in Machine learning
Data preprocessing in Machine learning
 
03 preprocessing
03 preprocessing03 preprocessing
03 preprocessing
 
Covering (Rules-based) Algorithm
Covering (Rules-based) AlgorithmCovering (Rules-based) Algorithm
Covering (Rules-based) Algorithm
 
What Is DATA MINING(INTRODUCTION)
What Is DATA MINING(INTRODUCTION)What Is DATA MINING(INTRODUCTION)
What Is DATA MINING(INTRODUCTION)
 
01 Data Mining: Concepts and Techniques, 2nd ed.
01 Data Mining: Concepts and Techniques, 2nd ed.01 Data Mining: Concepts and Techniques, 2nd ed.
01 Data Mining: Concepts and Techniques, 2nd ed.
 

Viewers also liked

Data preprocessing
Data preprocessingData preprocessing
Data preprocessingAmuthamca
 
An efficient data preprocessing method for mining
An efficient data preprocessing method for miningAn efficient data preprocessing method for mining
An efficient data preprocessing method for miningKamesh Waran
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessingHarry Potter
 
Data Preprocessing- Data Warehouse & Data Mining
Data Preprocessing- Data Warehouse & Data MiningData Preprocessing- Data Warehouse & Data Mining
Data Preprocessing- Data Warehouse & Data MiningTrinity Dwarka
 
1.6.data preprocessing
1.6.data preprocessing1.6.data preprocessing
1.6.data preprocessingKrish_ver2
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessingankur bhalla
 
Introduction to Text Mining and Visualization with Interactive Web Application
Introduction to Text Mining and Visualization with Interactive Web ApplicationIntroduction to Text Mining and Visualization with Interactive Web Application
Introduction to Text Mining and Visualization with Interactive Web ApplicationOlga Scrivner
 

Viewers also liked (7)

Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
An efficient data preprocessing method for mining
An efficient data preprocessing method for miningAn efficient data preprocessing method for mining
An efficient data preprocessing method for mining
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Data Preprocessing- Data Warehouse & Data Mining
Data Preprocessing- Data Warehouse & Data MiningData Preprocessing- Data Warehouse & Data Mining
Data Preprocessing- Data Warehouse & Data Mining
 
1.6.data preprocessing
1.6.data preprocessing1.6.data preprocessing
1.6.data preprocessing
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Introduction to Text Mining and Visualization with Interactive Web Application
Introduction to Text Mining and Visualization with Interactive Web ApplicationIntroduction to Text Mining and Visualization with Interactive Web Application
Introduction to Text Mining and Visualization with Interactive Web Application
 

Similar to Data preprocessing

Data preprocessing ng
Data preprocessing   ngData preprocessing   ng
Data preprocessing ngsaranya12345
 
Datapreprocessingppt
DatapreprocessingpptDatapreprocessingppt
DatapreprocessingpptShree Hari
 
Data preperation
Data preperationData preperation
Data preperationHoang Nguyen
 
Data preperation
Data preperationData preperation
Data preperationFraboni Ec
 
Data preperation
Data preperationData preperation
Data preperationLuis Goldster
 
Data preparation
Data preparationData preparation
Data preparationYoung Alista
 
Data preparation
Data preparationData preparation
Data preparationHarry Potter
 
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...ImXaib
 
Data preparation
Data preparationData preparation
Data preparationTony Nguyen
 
Data preparation
Data preparationData preparation
Data preparationJames Wong
 
Data Mining
Data MiningData Mining
Data MiningJay Nagar
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.pptRevathy V R
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data MiningDHIVYADEVAKI
 

Similar to Data preprocessing (20)

Data preprocessing ng
Data preprocessing   ngData preprocessing   ng
Data preprocessing ng
 
Datapreprocessingppt
DatapreprocessingpptDatapreprocessingppt
Datapreprocessingppt
 
Data preperation
Data preperationData preperation
Data preperation
 
Data preperation
Data preperationData preperation
Data preperation
 
Data preperation
Data preperationData preperation
Data preperation
 
Data preparation
Data preparationData preparation
Data preparation
 
Data preparation
Data preparationData preparation
Data preparation
 
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...
prvg4sczsginx3ynyqlc-signature-b84f0cf1da1e7d0fde4ecfab2a28f243cfa561f9aa2c9b...
 
Data preparation
Data preparationData preparation
Data preparation
 
Data preparation
Data preparationData preparation
Data preparation
 
Data Mining
Data MiningData Mining
Data Mining
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
 
Datapreprocess
DatapreprocessDatapreprocess
Datapreprocess
 
Preprocess
PreprocessPreprocess
Preprocess
 
Data1
Data1Data1
Data1
 
Data1
Data1Data1
Data1
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Datapreprocessing
DatapreprocessingDatapreprocessing
Datapreprocessing
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data Mining
 

More from Hoang Nguyen

Rest api to integrate with your site
Rest api to integrate with your siteRest api to integrate with your site
Rest api to integrate with your siteHoang Nguyen
 
How to build a rest api
How to build a rest apiHow to build a rest api
How to build a rest apiHoang Nguyen
 
Smm and caching
Smm and cachingSmm and caching
Smm and cachingHoang Nguyen
 
Optimizing shared caches in chip multiprocessors
Optimizing shared caches in chip multiprocessorsOptimizing shared caches in chip multiprocessors
Optimizing shared caches in chip multiprocessorsHoang Nguyen
 
How analysis services caching works
How analysis services caching worksHow analysis services caching works
How analysis services caching worksHoang Nguyen
 
Hardware managed cache
Hardware managed cacheHardware managed cache
Hardware managed cacheHoang Nguyen
 
Directory based cache coherence
Directory based cache coherenceDirectory based cache coherence
Directory based cache coherenceHoang Nguyen
 
Python your new best friend
Python your new best friendPython your new best friend
Python your new best friendHoang Nguyen
 
Python language data types
Python language data typesPython language data types
Python language data typesHoang Nguyen
 
Python basics
Python basicsPython basics
Python basicsHoang Nguyen
 
Programming for engineers in python
Programming for engineers in pythonProgramming for engineers in python
Programming for engineers in pythonHoang Nguyen
 
Learning python
Learning pythonLearning python
Learning pythonHoang Nguyen
 
Extending burp with python
Extending burp with pythonExtending burp with python
Extending burp with pythonHoang Nguyen
 
Cobol, lisp, and python
Cobol, lisp, and pythonCobol, lisp, and python
Cobol, lisp, and pythonHoang Nguyen
 
Object oriented programming using c++
Object oriented programming using c++Object oriented programming using c++
Object oriented programming using c++Hoang Nguyen
 
Object oriented analysis
Object oriented analysisObject oriented analysis
Object oriented analysisHoang Nguyen
 
Object model
Object modelObject model
Object modelHoang Nguyen
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithmsHoang Nguyen
 

More from Hoang Nguyen (20)

Rest api to integrate with your site
Rest api to integrate with your siteRest api to integrate with your site
Rest api to integrate with your site
 
How to build a rest api
How to build a rest apiHow to build a rest api
How to build a rest api
 
Api crash
Api crashApi crash
Api crash
 
Smm and caching
Smm and cachingSmm and caching
Smm and caching
 
Optimizing shared caches in chip multiprocessors
Optimizing shared caches in chip multiprocessorsOptimizing shared caches in chip multiprocessors
Optimizing shared caches in chip multiprocessors
 
How analysis services caching works
How analysis services caching worksHow analysis services caching works
How analysis services caching works
 
Hardware managed cache
Hardware managed cacheHardware managed cache
Hardware managed cache
 
Directory based cache coherence
Directory based cache coherenceDirectory based cache coherence
Directory based cache coherence
 
Cache recap
Cache recapCache recap
Cache recap
 
Python your new best friend
Python your new best friendPython your new best friend
Python your new best friend
 
Python language data types
Python language data typesPython language data types
Python language data types
 
Python basics
Python basicsPython basics
Python basics
 
Programming for engineers in python
Programming for engineers in pythonProgramming for engineers in python
Programming for engineers in python
 
Learning python
Learning pythonLearning python
Learning python
 
Extending burp with python
Extending burp with pythonExtending burp with python
Extending burp with python
 
Cobol, lisp, and python
Cobol, lisp, and pythonCobol, lisp, and python
Cobol, lisp, and python
 
Object oriented programming using c++
Object oriented programming using c++Object oriented programming using c++
Object oriented programming using c++
 
Object oriented analysis
Object oriented analysisObject oriented analysis
Object oriented analysis
 
Object model
Object modelObject model
Object model
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithms
 

Recently uploaded

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 

Recently uploaded (20)

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 

Data preprocessing

  • 2. Data Preprocessing ī° Why preprocess the data? ī° Data cleaning ī° Data integration and transformation ī° Data reduction ī° Discretization and concept hierarchy generation ī° Summary
  • 3. Why Data Preprocessing? ī° Data in the real world is dirty īŽ incomplete: lacking attribute values, lacking certain attributes of interest, or containing only aggregate data īŽ noisy: containing errors or outliers īŽ inconsistent: containing discrepancies in codes or names ī° No quality data, no quality mining results! īŽ Quality decisions must be based on quality data īŽ Data warehouse needs consistent integration of quality data īŽ Required for both OLAP and Data Mining!
  • 4. Why can Data be Incomplete? ī° Attributes of interest are not available (e.g., customer information for sales transaction data) ī° Data were not considered important at the time of transactions, so they were not recorded! ī° Data not recorder because of misunderstanding or malfunctions ī° Data may have been recorded and later deleted! ī° Missing/unknown values for some data
  • 5. Why can Data be Noisy/Inconsistent? ī° Faulty instruments for data collection ī° Human or computer errors ī° Errors in data transmission ī° Technology limitations (e.g., sensor data come at a faster rate than they can be processed) ī° Inconsistencies in naming conventions or data codes (e.g., 2/5/2002 could be 2 May 2002 or 5 Feb 2002) ī° Duplicate tuples, which were received twice should also be removed
  • 6. 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 ī° Data discretization īŽ Part of data reduction but with particular importance, especially for numerical data outliers=exceptions!
  • 7. Forms of data preprocessing
  • 8. Data Preprocessing ī° Why preprocess the data? ī° Data cleaning ī° Data integration and transformation ī° Data reduction ī° Discretization and concept hierarchy generation ī° Summary
  • 9. Data Cleaning ī° Data cleaning tasks īŽ Fill in missing values īŽ Identify outliers and smooth out noisy data īŽ Correct inconsistent data
  • 10. 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? ī° Use a global constant to fill in the missing value: e.g., “unknown”, a new class?! ī° Use the attribute mean to fill in the missing value ī° Use the attribute mean for all samples belonging to the same class to fill in the missing value: smarter ī° Use the most probable value to fill in the missing value: inference-based such as Bayesian formula or decision tree
  • 11. How to Handle Missing Data? Age Income Religion Gender 23 24,200 Muslim M 39 ? Christian F 45 45,390 ? F Fill missing values using aggregate functions (e.g., average) or probabilistic estimates on global value distribution E.g., put the average income here, or put the most probable income based on the fact that the person is 39 years old E.g., put the most frequent religion here
  • 12. Noisy Data ī° Noise: random error or variance in a measured variable ī° Incorrect attribute values may exist due to īŽ faulty data collection instruments īŽ data entry problems īŽ data transmission problems īŽ technology limitation īŽ inconsistency in naming convention ī° Other data problems which requires data cleaning īŽ duplicate records īŽ incomplete data īŽ inconsistent data
  • 13. How to Handle Noisy Data? Smoothing techniques ī° Binning method: īŽ first sort data and partition into (equi-depth) bins īŽ then one can smooth by bin means, smooth by bin median, smooth by bin boundaries, etc. ī° Clustering īŽ detect and remove outliers ī° Combined computer and human inspection īŽ computer detects suspicious values, which are then checked by humans ī° Regression īŽ smooth by fitting the data into regression functions ī° Use Concept hierarchies īŽ use concept hierarchies, e.g., price value -> “expensive”
  • 14. Simple Discretization Methods: Binning ī° Equal-width (distance) partitioning: īŽ It divides the range into N intervals of equal size: uniform grid īŽ if A and B are the lowest and highest values of the attribute, the width of intervals will be: W = (B-A)/N. īŽ The most straightforward īŽ But outliers may dominate presentation īŽ Skewed data is not handled well. ī° Equal-depth (frequency) partitioning: īŽ It divides the range into N intervals, each containing approximately same number of samples īŽ Good data scaling – good handing of skewed data
  • 15. Simple Discretization Methods: Binning Example: customer ages 0-10 10-20 20-30 30-40 40-50 50-60 60-70 70-80 Equi-width binning: number of values 0-22 22-31 44-4832-38 38-44 48-55 55-62 62-80 Equi-width binning:
  • 16. Smoothing using Binning Methods * Sorted data for price (in dollars): 4, 8, 9, 15, 21, 21, 24, 25, 26, 28, 29, 34 * Partition into (equi-depth) bins: - Bin 1: 4, 8, 9, 15 - Bin 2: 21, 21, 24, 25 - Bin 3: 26, 28, 29, 34 * Smoothing by bin means: - Bin 1: 9, 9, 9, 9 - Bin 2: 23, 23, 23, 23 - Bin 3: 29, 29, 29, 29 * Smoothing by bin boundaries: [4,15],[21,25],[26,34] - Bin 1: 4, 4, 4, 15 - Bin 2: 21, 21, 25, 25 - Bin 3: 26, 26, 26, 34
  • 18. Regression x y y = x + 1 X1 Y1 (salary) (age) Example of linear regression
  • 19. Inconsistent Data ī° Inconsistent data are handled by: īŽ Manual correction (expensive and tedious) īŽ Use routines designed to detect inconsistencies and manually correct them. E.g., the routine may use the check global constraints (age>10) or functional dependencies īŽ Other inconsistencies (e.g., between names of the same attribute) can be corrected during the data integration process
  • 20. Data Preprocessing ī° Why preprocess the data? ī° Data cleaning ī° Data integration and transformation ī° Data reduction ī° Discretization and concept hierarchy generation ī° Summary
  • 21. Data Integration ī° Data integration: īŽ combines data from multiple sources into a coherent store ī° Schema integration īŽ integrate metadata from different sources ī° metadata: data about the data (i.e., data descriptors) īŽ Entity identification problem: identify real world entities from multiple data sources, e.g., A.cust-id ≡ B.cust-# ī° Detecting and resolving data value conflicts īŽ for the same real world entity, attribute values from different sources are different (e.g., J.D.Smith and Jonh Smith may refer to the same person) īŽ possible reasons: different representations, different scales, e.g., metric vs. British units (inches vs. cm)
  • 22. Handling Redundant Data in Data Integration ī° Redundant data occur often when integration of multiple databases īŽ The same attribute may have different names in different databases īŽ One attribute may be a “derived” attribute in another table, e.g., annual revenue ī° Redundant data 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
  • 23. Data Transformation ī° Smoothing: remove noise from data ī° Aggregation: summarization, data cube construction ī° Generalization: concept hierarchy climbing ī° Normalization: scaled to fall within a small, specified range īŽ min-max normalization īŽ z-score normalization īŽ normalization by decimal scaling ī° Attribute/feature construction īŽ New attributes constructed from the given ones
  • 24. Normalization: Why normalization? ī° Speeds-up some learning techniques (ex. neural networks) ī° Helps prevent attributes with large ranges outweigh ones with small ranges īŽ Example: ī° income has range 3000-200000 ī° age has range 10-80 ī° gender has domain M/F
  • 25. Data Transformation: Normalization ī° min-max normalization īŽ e.g. convert age=30 to range 0-1, when min=10,max=80. new_age=(30-10)/(80-10)=2/7 ī° z-score normalization ī° normalization by decimal scaling AAA AA A minnewminnewmaxnew minmax minv v _)__(' +− − − = A A devstand_ meanv v − =' j v v 10 '= Where j is the smallest integer such that Max(| |)<1'v
  • 26. Data Preprocessing ī° Why preprocess the data? ī° Data cleaning ī° Data integration and transformation ī° Data reduction ī° Discretization and concept hierarchy generation ī° Summary
  • 27. Data Reduction Strategies ī° Warehouse may store terabytes of data: Complex data analysis/mining may take a very long time to run on the complete data set ī° Data reduction īŽ Obtains a reduced representation of the data set that is much smaller in volume but yet produces the same (or almost the same) analytical results ī° Data reduction strategies īŽ Data cube aggregation īŽ Dimensionality reduction īŽ Data compression īŽ Numerosity reduction īŽ Discretization and concept hierarchy generation
  • 28. Data Cube Aggregation ī° The lowest level of a data cube īŽ the aggregated data for an individual entity of interest īŽ e.g., a customer in a phone calling data warehouse. ī° Multiple levels of aggregation in data cubes īŽ Further reduce the size of data to deal with ī° Reference appropriate levels īŽ Use the smallest representation which is enough to solve the task ī° Queries regarding aggregated information should be answered using data cube, when possible
  • 29. Dimensionality Reduction ī° Feature selection (i.e., attribute subset selection): īŽ Select a minimum set of features such that the probability distribution of different classes given the values for those features is as close as possible to the original distribution given the values of all features īŽ reduce # of patterns in the patterns, easier to understand ī° Heuristic methods (due to exponential # of choices): īŽ step-wise forward selection īŽ step-wise backward elimination īŽ combining forward selection and backward elimination īŽ decision-tree induction
  • 30. Heuristic Feature Selection Methods ī° There are 2d possible sub-features of d features ī° Several heuristic feature selection methods: īŽ Best single features under the feature independence assumption: choose by significance tests. īŽ Best step-wise feature selection: ī° The best single-feature is picked first ī° Then next best feature condition to the first, ... īŽ Step-wise feature elimination: ī° Repeatedly eliminate the worst feature īŽ Best combined feature selection and elimination: īŽ Optimal branch and bound: ī° Use feature elimination and backtracking
  • 31. Example of Decision Tree Induction Initial attribute set: {A1, A2, A3, A4, A5, A6} A4 ? A1? A6? Class 1 Class 2 Class 1 Class 2 > Reduced attribute set: {A1, A4, A6}
  • 32. Data Compression Original Data Compressed Data lossless Original Data Approximated lossy
  • 33. ī° Given N data vectors from k-dimensions, find c <= k orthogonal vectors that can be best used to represent data īŽ The original data set is reduced to one consisting of N data vectors on c principal components (reduced dimensions) ī° Each data vector is a linear combination of the c principal component vectors ī° Works for numeric data only ī° Used when the number of dimensions is large Principal Component Analysis or Karhuren-Loeve (K-L) method
  • 34. X1 X2 Y1 Y2 Principal Component Analysis X1, X2: original axes (attributes) Y1,Y2: principal components significant component (high variance) Order principal components by significance and eliminate weaker ones
  • 35. Numerosity Reduction: Reduce the volume of data ī° Parametric methods īŽ Assume the data fits some model, estimate model parameters, store only the parameters, and discard the data (except possible outliers) īŽ Log-linear models: obtain value at a point in m-D space as the product on appropriate marginal subspaces ī° Non-parametric methods īŽ Do not assume models īŽ Major families: histograms, clustering, sampling
  • 36. Histograms ī° A popular data reduction technique ī° Divide data into buckets and store average (or sum) for each bucket ī° Can be constructed optimally in one dimension using dynamic programming ī° Related to quantization problems. 0 5 10 15 20 25 30 35 40 10000 30000 50000 70000 90000
  • 37. Histogram types ī° Equal-width histograms: īŽ It divides the range into N intervals of equal size ī° Equal-depth (frequency) partitioning: īŽ It divides the range into N intervals, each containing approximately same number of samples ī° V-optimal: īŽ It considers all histogram types for a given number of buckets and chooses the one with the least variance. ī° MaxDiff: īŽ After sorting the data to be approximated, it defines the borders of the buckets at points where the adjacent values have the maximum difference ī° Example: split 1,1,4,5,5,7,9,14,16,18,27,30,30,32 to three buckets MaxDiff 27-18 and 14-9 Histograms
  • 38. Clustering ī° Partitions data set into clusters, and models it by one representative from each cluster ī° Can be very effective if data is clustered but not if data is “smeared” ī° There are many choices of clustering definitions and clustering algorithms, further detailed in Chapter 7
  • 39. Cluster Analysis cluster outlier salary age the distance between points in the same cluster should be small the distance between points in different clusters should be large
  • 40. Hierarchical Reduction ī° Use multi-resolution structure with different degrees of reduction ī° Hierarchical clustering is often performed but tends to define partitions of data sets rather than “clusters” ī° Parametric methods are usually not amenable to hierarchical representation ī° Hierarchical aggregation īŽ An index tree hierarchically divides a data set into partitions by value range of some attributes īŽ Each partition can be considered as a bucket īŽ Thus an index tree with aggregates stored at each node is a hierarchical histogram
  • 41. Data Preprocessing ī° Why preprocess the data? ī° Data cleaning ī° Data integration and transformation ī° Data reduction ī° Discretization and concept hierarchy generation ī° Summary
  • 42. Discretization ī° Three types of attributes: īŽ Nominal — values from an unordered set īŽ Ordinal — values from an ordered set īŽ Continuous — real numbers ī° Discretization: īŽ divide the range of a continuous attribute into intervals īŽ why? ī° Some classification algorithms only accept categorical attributes. ī° Reduce data size by discretization ī° Prepare for further analysis
  • 43. Discretization and Concept hierachy ī° Discretization īŽ reduce the number of values for a given continuous attribute by dividing the range of the attribute into intervals. Interval labels can then be used to replace actual data values. ī° Concept hierarchies īŽ reduce the data by collecting and replacing low level concepts (such as numeric values for the attribute age) by higher level concepts (such as young, middle-aged, or senior).
  • 44. Discretization and concept hierarchy generation for numeric data ī° Binning/Smoothing (see sections before) ī° Histogram analysis (see sections before) ī° Clustering analysis (see sections before) ī° Entropy-based discretization ī° Segmentation by natural partitioning
  • 45. Entropy-Based Discretization ī° Given a set of samples S, if S is partitioned into two intervals S1 and S2 using boundary T, the information gain I(S,T) after partitioning is ī° The boundary that maximizes the information gain over all possible boundaries is selected as a binary discretization. ī° The process is recursively applied to partitions obtained until some stopping criterion is met, e.g., ī° Experiments show that it may reduce data size and improve classification accuracy )( || || )( || || ),( 2 2 1 1 S S S S Ent S Ent S TSI += δ>− ),()( STISEnt )(log)( 2 1 1 i m i i ppSEnt ∑= −=Entropy:
  • 46. Segmentation by natural partitioning The 3-4-5 rule can be used to segment numerical data into relatively uniform, “natural” intervals. * If an interval covers 3, 6, 7 or 9 distinct values at the most significant digit, partition the range into 3 equiwidth intervals for 3,6,9 or 2-3-2 for 7 * If it covers 2, 4, or 8 distinct values at the most significant digit, partition the range into 4 equiwidth intervals * If it covers 1, 5, or 10 distinct values at the most significant digit, partition the range into 5 equiwidth intervals ī° Users often like to see numerical ranges partitioned into relatively uniform, easy-to-read intervals that appear intuitive or “natural”. E.g., [50-60] better than [51.223-60.812] The rule can be recursively applied for the resulting intervals
  • 47. Concept hierarchy generation for categorical data ī° Categorical attributes: finite, possibly large domain, with no ordering among the values īŽ Example: item type ī° Specification of a partial ordering of attributes explicitly at the schema level by users or experts īŽ Example: location is split by domain experts to street<city<state<country ī° Specification of a portion of a hierarchy by explicit data grouping ī° Specification of a set of attributes, but not of their partial ordering ī° Specification of only a partial set of attributes
  • 48. Specification of a set of attributes Concept hierarchy can be automatically generated based on the number of distinct values per attribute in the given attribute set. The attribute with the most distinct values is placed at the lowest level of the hierarchy. country province_or_ state city street 15 distinct values 65 distinct values 3567 distinct values 674,339 distinct values