Computes the value of e raised to the specified power. The value can be a Decimal or Integer literal or a reference to a column containing numeric values. |
Numeric literal example:
derive type:single value: EXP(1) |
Output: Generates a column containing the value of e 1, which is approximately 2.718281828.
Column reference example:
derive type:single value: EXP(MyValue) as: 'exp_MyValue' |
Output: Generates the new exp_MyInteger
column containing the value of e to the power of the value in the MyValue
column.
derive type:single value: EXP(numeric_value) |
Argument | Required? | Data Type | Description |
---|---|---|---|
numeric_value | Y | string, decimal, or integer | Name of column or Decimal or Integer literal to apply to the function |
Name of the column or numeric literal whose value is the exponent of e.
Required? | Data Type | Example Value |
---|---|---|
Yes | String (column reference) or Integer or Decimal literal | 2.3 |