standardization {Indicator}R Documentation

Standardization

Description

It performs a standardization of data, i.e., centering and scaling, so that the data is expressed in terms of standard deviation (i.e., mean = 0, SD = 1). When applied to a statistical model, this function extracts the dataset, standardizes it, and refits the model with this standardized version of the dataset

Usage

standardization(data)

Arguments

data

dataframe with rows = observations and columns = quantitative variables

Value

It returns a dataframe of scaled data

References

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>

Examples


data("Education")
Standardization=standardization(Education)
print(Standardization)


[Package Indicator version 0.1.2 Index]