Given two or more datasets of time series data, return the rows in the first dataset that are not in any of the other datasets. Rows must have completely identical column values to be considered duplicates. Available in all scopes.
deDupTimeSeries(datasets...) returns Dataset
Argument | Data Type | Description |
---|---|---|
datasets | Dataset[] | List of Datasets, in order. The first Dataset's column definitions will set the result columns. All datasets must have timestamps in their first column (the "Date" data type). The datasets' other columns are matched by name, not by position within the dataset. |