SlideShare a Scribd company logo
UNIT-ii
Data Preprocessing
Content
**********************************************
 Why preprocess the data?
 Data cleaning
 Data integration and transformation
 Data reduction
 Discretization and concept
hierarchgeneration
Why preprocess the data?
Why Data Preprocessing?
• Data in the real world is:
– 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
Multi-Dimensional Measure of Data
Quality
• A well-accepted multidimensional view:
–
–
–
–
–
–
–
–

Accuracy
Completeness
Consistency
Timeliness
Believability
Value added
Interpretability
Accessibility

• Broad categories:

– intrinsic, contextual, representational, and
accessibility.
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
Forms of data
preprocessing
Data cleaning
Data Cleaning
• Data cleaning tasks
– Fill in missing values
– Identify outliers and smooth out noisy
data
– Correct inconsistent data
Missing
Data
• Data is not always available
– E.g., many tuples have no recorded value for several
attributes, such as customer income in sales 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

• Missing data may need to be inferred.
How to Handle Missing Data?
• Ignore the tuple: usually done when class label
is missing
• Fill in the missing value manually
• Use a global constant to fill in the missing
value: ex. “unknown”
How to Handle Missing
Data?
• 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
• Use the most probable value to fill in the missing
value: inference-based such as Bayesian formula
or decision tree
Noisy
Data

• Noise: random error or variance in a measured
variable
• Incorrect attribute values may 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?
• Binning method:
– first sort data and partition into (equalfrequency) bins
– then one can smooth by bin means, smooth
by bin median, smooth by bin boundaries

• Clustering
– detect and remove outliers

• Regression
– smooth by fitting the data to a regression
functions – linear regression
Cluster
Analysis
Data integration and
transformation
Data Integration
• Data integration:

– combines data from multiple sources into a coherent
store

• Schema integration

– integrate metadata from different sources
– 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
– possible reasons: different representations,
different scales, e.g., metric vs. British units
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
Handling Redundant Data in
Data Integration
• 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
Data Transformation
• 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
Data Transformation:
Normalization
• min-max normalization
v − min
v' =
(new _ max − new _ min ) + new _ min
max − min
A

A

A

A

A

• z-score normalization
v −mean
v' =
stand _ dev
A

A

v
• normalization by decimal scaling
v' =

10

j

Where j is the smallest integer such that Max(| v ' |)<1

A
Data reduction
Data Reduction
• 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
Example of Decision Tree Induction
Initial attribute set:
{A1, A2, A3, A4, A5, A6}
A4 ?
A6?

A1?

Class 1
>

Class 2

Class 1

Reduced attribute set: {A1, A4, A6}

Class 2
Histograms

• A popular data
reduction technique
• Divide data into
buckets and store
average (sum) for
each bucket
• Can be constructed
optimally in one
dimension using
dynamic programming
• Related to
quantization

40
35
30
25
20
15
10
5
0

10000

30000

50000

70000

90000
Clustering
• Partition data set into clusters, and one can store
cluster representation only
• Can be very effective if data is clustered but not if
data is “smeared”
• Can have hierarchical clustering and be stored in
multi-dimensional index tree structures
• There are many choices of clustering definitions and
clustering algorithms.
Sampling
• Allows a large data set to be
represented by a much smaller of the
data.
• Let a large data set D, contains N tuples.
• Methods to reduce data set D:
– Simple random sample without replacement
(SRSWOR)
– Simple random sample with replacement
(SRSWR)
– Cluster sample
– Stright sample
Sampling

WOR ndom
SRS le ra
t
simp e withou
(
l
samp ment)
e
eplac
r

SRSW
R

Raw Data
Lecture-16 - Data reduction
Sampling
Raw Data

Cluster/Stratified Sample

Lecture-16 - Data reduction
Discretization and concept
hierarchy generation
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
– 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
reduce the number of values for a given
continuous attribute by dividing the
range of the attribute into intervals.
Some classification algorithms only
accept categorical attributes.
Reduce data size by discretization
Prepare for further analysis
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
lowestcountry of the hierarchy.
level
15 distinct values
province_or_ state
city
street

65 distinct
values
3567 distinct values
674,339 distinct values
Thank you !!
Ad

More Related Content

What's hot (17)

Data preprocessing ng
Data preprocessing   ngData preprocessing   ng
Data preprocessing ng
datapreprocessing
 
Data preprocessing using Machine Learning
Data  preprocessing using Machine Learning Data  preprocessing using Machine Learning
Data preprocessing using Machine Learning
Gopal Sakarkar
 
Data Preprocessing || Data Mining
Data Preprocessing || Data MiningData Preprocessing || Data Mining
Data Preprocessing || Data Mining
Iffat Firozy
 
Data pre processing
Data pre processingData pre processing
Data pre processing
junnubabu
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
dineshbabuspr
 
Data preprocess
Data preprocessData preprocess
Data preprocess
srigiridharan92
 
Data Preprocessing
Data PreprocessingData Preprocessing
Data Preprocessing
dineshbabuspr
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
kayathri02
 
data warehousing & minining 1st unit
data warehousing & minining 1st unitdata warehousing & minining 1st unit
data warehousing & minining 1st unit
bhagathk
 
Data PreProcessing
Data PreProcessingData PreProcessing
Data PreProcessing
tdharmaputhiran
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
ksamyMCA
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
Vikran Kottaisamy
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
Gajanand Sharma
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
Harry Potter
 
03 preprocessing
03 preprocessing03 preprocessing
03 preprocessing
purnimatm
 
1.6.data preprocessing
1.6.data preprocessing1.6.data preprocessing
1.6.data preprocessing
Krish_ver2
 
Data Preprocessing
Data PreprocessingData Preprocessing
Data Preprocessing
Object-Frontier Software Pvt. Ltd
 
Data preprocessing using Machine Learning
Data  preprocessing using Machine Learning Data  preprocessing using Machine Learning
Data preprocessing using Machine Learning
Gopal Sakarkar
 
Data Preprocessing || Data Mining
Data Preprocessing || Data MiningData Preprocessing || Data Mining
Data Preprocessing || Data Mining
Iffat Firozy
 
Data pre processing
Data pre processingData pre processing
Data pre processing
junnubabu
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
kayathri02
 
data warehousing & minining 1st unit
data warehousing & minining 1st unitdata warehousing & minining 1st unit
data warehousing & minining 1st unit
bhagathk
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
ksamyMCA
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
Harry Potter
 
03 preprocessing
03 preprocessing03 preprocessing
03 preprocessing
purnimatm
 
1.6.data preprocessing
1.6.data preprocessing1.6.data preprocessing
1.6.data preprocessing
Krish_ver2
 

Viewers also liked (19)

Seminar Association Rules
Seminar Association RulesSeminar Association Rules
Seminar Association Rules
alrazgi
 
Associative Learning
Associative LearningAssociative Learning
Associative Learning
Indrajit Sreemany
 
Preprocess
PreprocessPreprocess
Preprocess
sharmilajohn
 
Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641Data mining-primitives-languages-and-system-architectures2641
Data mining-primitives-languages-and-system-architectures2641
Aiswaryadevi Jaganmohan
 
Apriori
AprioriApriori
Apriori
Khaled Boussaidi
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
Mainul Hassan
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
Junghoon Kim
 
Clustering
ClusteringClustering
Clustering
Meme Hei
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
nouraalkhatib
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
ankur bhalla
 
Lecture13 - Association Rules
Lecture13 - Association RulesLecture13 - Association Rules
Lecture13 - Association Rules
Albert Orriols-Puig
 
Decision trees
Decision treesDecision trees
Decision trees
Jagjit Wilku
 
Cluster Analysis
Cluster AnalysisCluster Analysis
Cluster Analysis
DataminingTools Inc
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
Ashis Kumar Chanda
 
Data Mining: Association Rules Basics
Data Mining: Association Rules BasicsData Mining: Association Rules Basics
Data Mining: Association Rules Basics
Benazir Income Support Program (BISP)
 
Cluster analysis
Cluster analysisCluster analysis
Cluster analysis
Jewel Refran
 
Clustering in Data Mining
Clustering in Data MiningClustering in Data Mining
Clustering in Data Mining
Archana Swaminathan
 
Data Mining: clustering and analysis
Data Mining: clustering and analysisData Mining: clustering and analysis
Data Mining: clustering and analysis
DataminingTools Inc
 
Data mining
Data miningData mining
Data mining
Akannsha Totewar
 
Ad

Similar to Data preprocessing ppt1 (20)

Data extraction, cleanup &amp; transformation tools 29.1.16
Data extraction, cleanup &amp; transformation tools 29.1.16Data extraction, cleanup &amp; transformation tools 29.1.16
Data extraction, cleanup &amp; transformation tools 29.1.16
Dhilsath Fathima
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
Roshan575917
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
chatbot9
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
waseemchaudhry13
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
Arumugam Prakash
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
congtran88
 
Preprocessing
PreprocessingPreprocessing
Preprocessing
mmuthuraj
 
Pre-Processing and Data Preparation
Pre-Processing and Data PreparationPre-Processing and Data Preparation
Pre-Processing and Data Preparation
Umair Shafique
 
Data preprocessing 2
Data preprocessing 2Data preprocessing 2
Data preprocessing 2
extraganesh
 
Unit 3 part ii Data mining
Unit 3 part ii Data miningUnit 3 part ii Data mining
Unit 3 part ii Data mining
Dhilsath Fathima
 
3-DataPreprocessing a complete guide.pdf
3-DataPreprocessing a complete guide.pdf3-DataPreprocessing a complete guide.pdf
3-DataPreprocessing a complete guide.pdf
shobyscms
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
extraganesh
 
Dmblog
DmblogDmblog
Dmblog
veeralakshmi pandi
 
Data pre processing
Data pre processingData pre processing
Data pre processing
pommurajopt
 
data clean.ppt
data clean.pptdata clean.ppt
data clean.ppt
chatbot9
 
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptxLecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
JITENDER773791
 
Data1
Data1Data1
Data1
suganmca14
 
Data1
Data1Data1
Data1
suganmca14
 
Datapreprocessing
DatapreprocessingDatapreprocessing
Datapreprocessing
priya_trehan
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data Mining
DHIVYADEVAKI
 
Data extraction, cleanup &amp; transformation tools 29.1.16
Data extraction, cleanup &amp; transformation tools 29.1.16Data extraction, cleanup &amp; transformation tools 29.1.16
Data extraction, cleanup &amp; transformation tools 29.1.16
Dhilsath Fathima
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
chatbot9
 
Preprocessing.ppt
Preprocessing.pptPreprocessing.ppt
Preprocessing.ppt
congtran88
 
Preprocessing
PreprocessingPreprocessing
Preprocessing
mmuthuraj
 
Pre-Processing and Data Preparation
Pre-Processing and Data PreparationPre-Processing and Data Preparation
Pre-Processing and Data Preparation
Umair Shafique
 
Data preprocessing 2
Data preprocessing 2Data preprocessing 2
Data preprocessing 2
extraganesh
 
Unit 3 part ii Data mining
Unit 3 part ii Data miningUnit 3 part ii Data mining
Unit 3 part ii Data mining
Dhilsath Fathima
 
3-DataPreprocessing a complete guide.pdf
3-DataPreprocessing a complete guide.pdf3-DataPreprocessing a complete guide.pdf
3-DataPreprocessing a complete guide.pdf
shobyscms
 
Data preprocessing
Data preprocessingData preprocessing
Data preprocessing
extraganesh
 
Data pre processing
Data pre processingData pre processing
Data pre processing
pommurajopt
 
data clean.ppt
data clean.pptdata clean.ppt
data clean.ppt
chatbot9
 
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptxLecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
Lecturekjkljkljlkjknklnjkghvblkbbkbkjb.pptx
JITENDER773791
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data Mining
DHIVYADEVAKI
 
Ad

Recently uploaded (20)

Chemotherapy of Malignancy -Anticancer.pptx
Chemotherapy of Malignancy -Anticancer.pptxChemotherapy of Malignancy -Anticancer.pptx
Chemotherapy of Malignancy -Anticancer.pptx
Mayuri Chavan
 
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
Drugs in Anaesthesia and Intensive Care,.pdf
Drugs in Anaesthesia and Intensive Care,.pdfDrugs in Anaesthesia and Intensive Care,.pdf
Drugs in Anaesthesia and Intensive Care,.pdf
crewot855
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
Pope Leo XIV, the first Pope from North America.pptx
Pope Leo XIV, the first Pope from North America.pptxPope Leo XIV, the first Pope from North America.pptx
Pope Leo XIV, the first Pope from North America.pptx
Martin M Flynn
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
How to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 PurchaseHow to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 Purchase
Celine George
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon DolabaniHistory Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
fruinkamel7m
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
antiquity of writing in ancient India- literary & archaeological evidence
antiquity of writing in ancient India- literary & archaeological evidenceantiquity of writing in ancient India- literary & archaeological evidence
antiquity of writing in ancient India- literary & archaeological evidence
PrachiSontakke5
 
The History of Kashmir Karkota Dynasty NEP.pptx
The History of Kashmir Karkota Dynasty NEP.pptxThe History of Kashmir Karkota Dynasty NEP.pptx
The History of Kashmir Karkota Dynasty NEP.pptx
Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
UPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guideUPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guide
abmerca
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
Dr. Nasir Mustafa
 
Myopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduateMyopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduate
Mohamed Rizk Khodair
 
Module 1: Foundations of Research
Module 1: Foundations of ResearchModule 1: Foundations of Research
Module 1: Foundations of Research
drroxannekemp
 
Ancient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian HistoryAncient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian History
Virag Sontakke
 
Chemotherapy of Malignancy -Anticancer.pptx
Chemotherapy of Malignancy -Anticancer.pptxChemotherapy of Malignancy -Anticancer.pptx
Chemotherapy of Malignancy -Anticancer.pptx
Mayuri Chavan
 
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
Drugs in Anaesthesia and Intensive Care,.pdf
Drugs in Anaesthesia and Intensive Care,.pdfDrugs in Anaesthesia and Intensive Care,.pdf
Drugs in Anaesthesia and Intensive Care,.pdf
crewot855
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
Pope Leo XIV, the first Pope from North America.pptx
Pope Leo XIV, the first Pope from North America.pptxPope Leo XIV, the first Pope from North America.pptx
Pope Leo XIV, the first Pope from North America.pptx
Martin M Flynn
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
How to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 PurchaseHow to Manage Amounts in Local Currency in Odoo 18 Purchase
How to Manage Amounts in Local Currency in Odoo 18 Purchase
Celine George
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon DolabaniHistory Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
History Of The Monastery Of Mor Gabriel Philoxenos Yuhanon Dolabani
fruinkamel7m
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
antiquity of writing in ancient India- literary & archaeological evidence
antiquity of writing in ancient India- literary & archaeological evidenceantiquity of writing in ancient India- literary & archaeological evidence
antiquity of writing in ancient India- literary & archaeological evidence
PrachiSontakke5
 
UPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guideUPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guide
abmerca
 
puzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tensepuzzle Irregular Verbs- Simple Past Tense
puzzle Irregular Verbs- Simple Past Tense
OlgaLeonorTorresSnch
 
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
MCQ PHYSIOLOGY II (DR. NASIR MUSTAFA) MCQS)
Dr. Nasir Mustafa
 
Myopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduateMyopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduate
Mohamed Rizk Khodair
 
Module 1: Foundations of Research
Module 1: Foundations of ResearchModule 1: Foundations of Research
Module 1: Foundations of Research
drroxannekemp
 
Ancient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian HistoryAncient Stone Sculptures of India: As a Source of Indian History
Ancient Stone Sculptures of India: As a Source of Indian History
Virag Sontakke
 

Data preprocessing ppt1

  • 1. UNIT-ii Data Preprocessing Content **********************************************  Why preprocess the data?  Data cleaning  Data integration and transformation  Data reduction  Discretization and concept hierarchgeneration
  • 3. Why Data Preprocessing? • Data in the real world is: – 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
  • 4. Multi-Dimensional Measure of Data Quality • A well-accepted multidimensional view: – – – – – – – – Accuracy Completeness Consistency Timeliness Believability Value added Interpretability Accessibility • Broad categories: – intrinsic, contextual, representational, and accessibility.
  • 5. 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
  • 8. Data Cleaning • Data cleaning tasks – Fill in missing values – Identify outliers and smooth out noisy data – Correct inconsistent data
  • 9. Missing Data • Data is not always available – E.g., many tuples have no recorded value for several attributes, such as customer income in sales 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 • Missing data may need to be inferred.
  • 10. How to Handle Missing Data? • Ignore the tuple: usually done when class label is missing • Fill in the missing value manually • Use a global constant to fill in the missing value: ex. “unknown”
  • 11. How to Handle Missing Data? • 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 • Use the most probable value to fill in the missing value: inference-based such as Bayesian formula or decision tree
  • 12. Noisy Data • Noise: random error or variance in a measured variable • Incorrect attribute values may 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? • Binning method: – first sort data and partition into (equalfrequency) bins – then one can smooth by bin means, smooth by bin median, smooth by bin boundaries • Clustering – detect and remove outliers • Regression – smooth by fitting the data to a regression functions – linear regression
  • 16. Data Integration • Data integration: – combines data from multiple sources into a coherent store • Schema integration – integrate metadata from different sources – 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 – possible reasons: different representations, different scales, e.g., metric vs. British units
  • 17. 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
  • 18. Handling Redundant Data in Data Integration • 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
  • 19. Data Transformation • Smoothing: remove noise from data • Aggregation: summarization, data cube construction • Generalization: concept hierarchy climbing
  • 20. Data Transformation • 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
  • 21. Data Transformation: Normalization • min-max normalization v − min v' = (new _ max − new _ min ) + new _ min max − min A A A A A • z-score normalization v −mean v' = stand _ dev A A v • normalization by decimal scaling v' = 10 j Where j is the smallest integer such that Max(| v ' |)<1 A
  • 23. Data Reduction • 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
  • 24. Example of Decision Tree Induction Initial attribute set: {A1, A2, A3, A4, A5, A6} A4 ? A6? A1? Class 1 > Class 2 Class 1 Reduced attribute set: {A1, A4, A6} Class 2
  • 25. Histograms • A popular data reduction technique • Divide data into buckets and store average (sum) for each bucket • Can be constructed optimally in one dimension using dynamic programming • Related to quantization 40 35 30 25 20 15 10 5 0 10000 30000 50000 70000 90000
  • 26. Clustering • Partition data set into clusters, and one can store cluster representation only • Can be very effective if data is clustered but not if data is “smeared” • Can have hierarchical clustering and be stored in multi-dimensional index tree structures • There are many choices of clustering definitions and clustering algorithms.
  • 27. Sampling • Allows a large data set to be represented by a much smaller of the data. • Let a large data set D, contains N tuples. • Methods to reduce data set D: – Simple random sample without replacement (SRSWOR) – Simple random sample with replacement (SRSWR) – Cluster sample – Stright sample
  • 28. Sampling WOR ndom SRS le ra t simp e withou ( l samp ment) e eplac r SRSW R Raw Data Lecture-16 - Data reduction
  • 31. 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 – Some classification algorithms only accept categorical attributes. – Reduce data size by discretization – Prepare for further analysis
  • 32. 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).
  • 33. Discretization reduce the number of values for a given continuous attribute by dividing the range of the attribute into intervals. Some classification algorithms only accept categorical attributes. Reduce data size by discretization Prepare for further analysis
  • 34. 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 lowestcountry of the hierarchy. level 15 distinct values province_or_ state city street 65 distinct values 3567 distinct values 674,339 distinct values
  翻译: