Skip to content

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.

FieldDescriptionRequired
columnColumn in dataset to be convertedโœ… Yes
formatTypeSignificant digits digits or decimal places decimalโœ… Yes
numberInteger 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.