SKEWNESS - Amazon Glue DataBrew
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

SKEWNESS

Applies transformations on your data values to change the distribution shape and its skew.

Parameters
  • sourceColumn – The name of an existing column.

    targetColumn – The name of the new column to be created.

    skewFunction

    • ROOT – extract value-root. The root can be provided in the value parameter.

      LOG – log base value. The log base can be provided in the value parameter.

      SQUARE – square function

    value – Argument of the skewFunction.

Example

{ "RecipeAction": { "Operation": "SKEWNESS", "Parameters": { "sourceColumn": "level", "targetColumn": "bin", "skewFunction": "LOG", "value": "2.718281828" } } }