math
Syntax:
Integer
Context Filtering: ✓ Yes
Parameters
Allowed Column Types for
value: INT, FLOAT, DECIMAL
Validation
- Minimum parameters: 4
- Maximum parameters: 4
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
math
Syntax:
BinFixed([value], [min], [max], [bins])
Integer
Context Filtering: ✓ Yes
| Name | Type | Required | Description |
|---|---|---|---|
value | number or column | ✓ Yes | The value for which the bin is computed |
min | number | ✓ Yes | The lower bound. If the value is less than min, the bin will be 0 |
max | number | ✓ Yes | If the value is greater than or equal to max, the bin will be bins + 1 |
bins | number | ✓ Yes | The number of bins within the interval. Bins are numbered 1 through bins |
value: INT, FLOAT, DECIMAL
BinFixed([Days Since Signup], 0, 90, 3)
BinFixed(25, 0, 100, 5)