Roshan
Roshan
Some thoughts: We could have a two different functions for this feature, depending on what the user wants. - `disjointRange(unit, int, int)` - This will cover seconds, minutes, hours, months,...
Once implemented, the `interval` function would cover disjoint time ranges. Adding to your example, it'd cover the `hourSelection` function (discussed in #1557). Selecting data that occurred between the hours 02:00AM...
Thanks for bringing this up! I see an issue was raised in lifxlan. If the pip version doesn't get updated, I'll add a copy to this repo as a local...
Some questions about time literal arithmetic: When dividing `Durations`, do we want to return an Int or a Float? This makes a difference when dividing a smaller duration by a...
With `tail()` implemented: ``` first = (table= table |> filter(fn: (r) => exists(r.column)) |> limit(n: n) last = (table= table |> filter(fn: (r) => exists(r.column)) |> tail(n: n) ``` However,...