mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 20:38:40 +00:00
* Update documents of commands * Change plugin names for register command examples * Remove unused docs [ci skip]
528 B
528 B
| title | layout | version |
|---|---|---|
| window | command | 0.59.1 |
Creates a sliding window of window_size that slide by n rows/elements across input.
Signature
> window (window_size) --stride
Parameters
window_size: the size of each window--stride {int}: the number of rows to slide over between windows
Examples
A sliding window of two elements
> echo [1 2 3 4] | window 2
A sliding window of two elements, with a stride of 3
> [1, 2, 3, 4, 5, 6, 7, 8] | window 2 --stride 3