| 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
|
| dropNA(dataset, text, end)
|
Remove missing value or empty value rows in dataset.
|
Example
|
| peaks
|
Returns a dataset containing indices of peaks found using width and minHeight as a criteria.
|
Example
|
| reverse(dataset)
|
Return the reverse order of the column.
|
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.
|
|