Generate number
Generates a numeric value
Evaluation
This expression evaluates to a function of the form:
(seed) -> any
The function is consistent with generator semantics of the Random Data step.
Processing
Given a seed value, the function returns a pseudo-random double value consistent with the specified settings.
Settings
Name | Type | Description |
---|---|---|
Start |
double | Lowest possible number generated. |
End |
double | Generator returns values up to, but not including, this value. |
Decimal places |
long |
Number of decimal places in generated values.
|
Distribution |
string |
Distribution of generated values. Available options are:
|
Chance of nil |
double |
Probability in range of 0.0 to 1.0 that the generator will return nil instead of generating a value. |