min_max | R Documentation |
Min-max normalization transforms each value by subtracting its minimum and dividing by its range (maximum-minimum). The result is a new variable with a minimum of zero and a maximum of one
min_max(data)
data |
dataframe with rows = observations and columns = quantiative variables |
Change the value of variable to negative if it has negative polarity
It returns a datafame of normalized data
OECD/European Union/EC-JRC (2008), Handbook on Constructing Composite Indicators: Methodology and User Guide, OECD Publishing, Paris, <https://doi.org/10.1787/9789264043466-en>
data("Education")
Normalization=min_max(Education)
print(Normalization)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.