normaliseMethodTooltips property

Map<String, String> normaliseMethodTooltips
getter/setter pair

Implementation

Map<String, String> normaliseMethodTooltips = {
  'Recenter': '''

  Recenter the values of the variable around zero by subtracting the mean and
  dividing by the root-mean-square. The resulting values will have a mean of
  zero and a spread of positive and negative numbers around 0.

  ''',
  'Scale [0-1]': '''

  Rescale the values of the variable to be in the range between 0 and 1.

  ''',
  '-Median/MAD': '''

  Similar to the Recenter operation, this will subtract the median (instead of
  the mean) and and divide by the median absolute deviation. This is
  considered to be a more robust transformation.

  ''',
  'Natural Log': '''

  Apply the natural logarithm to the values of the variable.

  ''',
  'Log 10': '''

  Apply the base 10 logarithm to the values of the variable.

  ''',
};