This is a wrapper function for Normalise(), which offers a simpler syntax but less flexibility. It
normalises data sets within a purse using a specified function f_n which is used to normalise each indicator, with
additional function arguments passed by f_n_para. By default, f_n = "n_minmax" and f_n_para is
set so that the indicators are normalised using the min-max method, between 0 and 100.
Name of a normalisation function (as a string) to apply to each indicator. Default "n_minmax".
f_n_para
Any further arguments to pass to f_n, as a named list.
directions
An optional data frame containing the following columns:
iCode The indicator code, corresponding to the column names of the data frame
Direction numeric vector with entries either -1 or 1
If directions is not specified, the directions will be taken from the iMeta table in the coin, if available.
global
Logical: if TRUE, normalisation is performed "globally" across all coins, by using e.g. the
max and min of each indicator in any coin. This effectively makes normalised scores comparable between coins
because they are all scaled using the same parameters. Otherwise if FALSE, coins are normalised individually.
...
arguments passed to or from other methods.
Details
Essentially, this function is similar to Normalise() but brings parameters into the function arguments
rather than being wrapped in a list. It also does not allow individual normalisation.
Normalisation can either be performed independently on each coin, or over the entire panel data set
simultaneously. See the discussion in Normalise.purse() and vignette("normalise").