Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to perform 0 to 1 Normalization in excel [closed]

I have an excel file with a column containing some numbers i need to normalize the distribution between 0 and 1 using this formula x-min(distribution)/max(distribution)-min(distribution). any help will be appreciated.

like image 836
user3415874 Avatar asked Apr 09 '14 03:04

user3415874


People also ask

How do you normalize in Excel?

Standardization (Or Z-score normalization)Step 1: Calculate the mean/average of the distribution. It can be done using the AVERAGE() function. The mean value comes out to be 161.8 and is stored in the B14 cell. Step 2: Calculate the standard deviation of the distribution which can be done using the STDEV() function.

How do I rescale data in Excel?

To change the data to negative numbers, type “-1” in an empty cell and copy it using Ctrl-C. Then, select all of the cells containing the data you want to scale, right-click on them, then choose Paste Special. Again, select Multiply and click OK. All the values will change from positive to negative.


1 Answers

Try this:

=(G9-MIN($G$9:$G:$12))/(MAX($G$9:$G$12)-MIN($G$9:$G$12))
like image 53
Nicholas Flees Avatar answered Oct 08 '22 03:10

Nicholas Flees