This is a filter that lets you remove attributes and columns from a result set.
Function Traits: Transformation
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
fields [a] | Array of strings | required | The names of the fields to discard. | |
The parameter name for fields
can be omitted; the following forms are equivalent:
logscale
drop("value")
and:
logscale
drop(fields="value")
drop()
Examples
This example shows how to drop the single field called, header:
logscale
drop(header)
In this example, it will drop two fields:
logscale
drop([header,value])