- #1
Ronni
- 9
- 0
Hi,
I am trying to convert data to a particular range of 0-10.
Actual Data may vary from - 50000 - 26214400. I have broken this down into 4 parts as follows -
How can i convert this data ? Is there any formula to do this? I found a way to normalize data to a range of [ 0 - 1 ] but am not able to apply the same to this.
I am trying to convert data to a particular range of 0-10.
Actual Data may vary from - 50000 - 26214400. I have broken this down into 4 parts as follows -
Code:
50000 - 1048576 -----> 0 - 2.5
1048577 - 5242880 -----> 2.6 - 5
5242881 - 15728640 ----->5.1 - 7.5
15728641 - 26214400 ----->7.6 - 10
How can i convert this data ? Is there any formula to do this? I found a way to normalize data to a range of [ 0 - 1 ] but am not able to apply the same to this.