0% found this document useful (0 votes)
45 views

DataTransformation Example1

This document discusses min-max normalization, a method to map data within a given range to a new range from 0 to 1. An example shows an income of $73,600 mapped to the range [0, 1] using a minimum income of $12,000 and maximum of $98,000. The result is 0.716. Min-max normalization preserves relationships among original values but could result in errors if future values fall outside the original data range.

Uploaded by

Adisu Wagaw
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views

DataTransformation Example1

This document discusses min-max normalization, a method to map data within a given range to a new range from 0 to 1. An example shows an income of $73,600 mapped to the range [0, 1] using a minimum income of $12,000 and maximum of $98,000. The result is 0.716. Min-max normalization preserves relationships among original values but could result in errors if future values fall outside the original data range.

Uploaded by

Adisu Wagaw
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 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