Decimal Scaling with Examples
Decimal scaling is a data normalization technique like Z score, Min-Max, and normalization with standard deviation. Decimal scaling is a data normalization technique. In this technique, we move the decimal point of values of the attribute. This movement of decimal points totally depends on the maximum value among all values in the attribute.Decimal Scaling Formula
A value v of attribute A is can be normalized by the following formula Normalized value of attribute = ( vi / 10j ) If you are interested in an excel file of decimal scaling, then you can read the excel file with calculations.Example of Decimal Scaling:
CGPA | Formula | CGPA Normalized after Decimal scaling |
2 | 2/10 | 0.2 |
3 | 3/10 | 0.3 |
Example 2:
Salary bonus | Formula | CGPA Normalized after Decimal scaling |
400 | 400 / 1000 | 0.4 |
310 | 310 / 1000 | 0.31 |
Example 3:
Salary | Formula | CGPA Normalized after Decimal scaling |
40,000 | 40,000 / 100000 | 0.4 |
31, 000 | 31,000 / 100000 | 0.31 |
Decimal Scaling C++ Example
1 2 3 4 5 6 7 8 9 |
#include<iostream> using namespace std; int main() { float n=400; cout<<"number is"<<n<<endl; float decimalScaling = n/1000; cout<<"number is converted to its decimal and the result is:"<<decimalScaling<<endl; } |
Download Helping Material for Decimal Scaling (Just for non-commercial Use)
- PDF file including Decimal Scaling.
- Slides Presentation including Decimal Scaling.
- Excel File Calculations including Decimal Scaling.