Skip to main content
info
This documentation is for version v2.5 of the product.
For the latest version(v2.7) documentation click here
Version: v2.5 print this page

MathFunctions

This node performs specified math function on a row

Input

It accepts a DataFrame as input from the previous Node

Output

A new column is added which contains the results of applying the Math function on the given column of the input DataFrame

Type

transform

Fields

NameTitleDescription
inputColInput Column Nameinput column name
mathFunctionMath FunctionMath Function Name
outputColOutput ColumnOutput Column Name
scaleScaleScale to be used when applying the Math Functions pow & round function.

Examples

Input

nameageheight
Alice580
Alice580
Alice1080
James550
James1060
James780

Parameters

NameValue
Input Column Nameage
Math Functionpow
Output Columnpow_age
Scale2

Output

nameageheightpow_age
Alice58025.0
Alice58025.0
Alice1080100.0
James55025.0
James1060100.0
James78049.0