0% found this document useful (0 votes)
36 views1 page

Data Normalization Techniques Explained

The document provides various methods for normalizing a dataset consisting of the values 200, 300, 400, 600, and 1000. It includes Min-Max Normalization, Z-Score Normalization, Z-Score using Mean Absolute Deviation (MAD), and Decimal Scaling, each with their respective formulas and results. The results of each normalization method are summarized in numerical arrays.

Uploaded by

soumy3174
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Data Normalization Techniques Explained

The document provides various methods for normalizing a dataset consisting of the values 200, 300, 400, 600, and 1000. It includes Min-Max Normalization, Z-Score Normalization, Z-Score using Mean Absolute Deviation (MAD), and Decimal Scaling, each with their respective formulas and results. The results of each normalization method are summarized in numerical arrays.

Uploaded by

soumy3174
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Normalization of Data: 200, 300, 400, 600, 1000

(a) Min-Max Normalization (min = 0, max = 1)

x' = (x - 200) / (1000 - 200) = (x - 200) / 800

Result: [0, 0.125, 0.25, 0.5, 1]

(b) Z-Score Normalization

Mean (mu) = 500

Standard Deviation (sigma) = sqrt(80000) ~= 282.84

x' = (x - mu) / sigma

Result: [-1.06, -0.71, -0.35, 0.35, 1.77]

(c) Z-Score using Mean Absolute Deviation (MAD)

MAD = 240

x' = (x - 500) / 240

Result: [-1.25, -0.83, -0.42, 0.42, 2.08]

(d) Decimal Scaling

Max value = 1000 -> j = 4

x' = x / 10^4

Result: [0.02, 0.03, 0.04, 0.06, 0.10]

You might also like