DataTransformation Example1

You might also like

Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 1

Example1: Let Minimum income = $12,000 Maximum income = $98,000 To map the income in the range of [0.0, 1.

0], by min-max normalization method, an income of $73,600 will be mapped to:

v minA v' (new _ maxA new _ minA) new _ minA maxA minA
= 73,600 -12,000 --------------------- (1.0 -0.0) + 0.0 98,000 -12,000

= 0.716 Preserves the relationship among the original data values. Encounters out of bounds error if a future input case for normalization falls outside of the original data range for A

You might also like