3.5.6 Data Manipulation

Name Brief Example
corr(dataset1, dataset2, k, N) Returns the correlation between two datasets using a lag size of k and an optional number of points N. Example
peaks Returns a dataset containing indices of peaks found using width and minHeight as a criteria. Example
sort(dataset) Returns a dataset that contains dataset, sorted in ascending order.
treplace(dataset, value1, value2, condition) Returns a dataset. Each value in dataset is compared to value1 according to the condition.