skip
Drop the first n points of a series.
skip [n] [by field1, [field2, ...]
Parameter | Description | Required? |
---|---|---|
n |
The number of points to skip | No; if not specified, a single point is skipped |
by |
One or more fields by which to group. See Grouping fields with by. | No |
Example: For each value of id, skip the first two points
emit -from Date.new(0) -limit 9
| put id = Math.ceil(count() / 3)
| skip 2 by id
| remove time
| view table