Numerical Formatting Rule (numerical_format) โ
Formats numerical data by using either significant digits or decimal places. May be useful to combine this with Column Mapping rule to convert a copy of the original column.
| Field | Description | Required |
|---|---|---|
column | Column in dataset to be converted | โ Yes |
formatType | Significant digits digits or decimal places decimal | โ Yes |
number | Integer value that specifies the number of significant digits or decimal places. | โ Yes |
Example: โ
json
{
"description": "Numerical Formatting Description",
"version": "3.0.0",
"column": "conc",
"formatType": "digits",
"number": 2,
"type": "numerical_format"
}Behavior: The column conc is formatted with 2 significant digits.