mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 01:28:24 +02:00
Auto-generate markdown command docs (#4451)
* Finish updating * a couple improvements * Update renames * cleanup examples
This commit is contained in:
29
docs/commands/dfr_rolling.md
Normal file
29
docs/commands/dfr_rolling.md
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
title: dfr rolling
|
||||
layout: command
|
||||
version: 0.59.0
|
||||
---
|
||||
|
||||
Rolling calculation for a series
|
||||
|
||||
## Signature
|
||||
|
||||
```> dfr rolling (type) (window)```
|
||||
|
||||
## Parameters
|
||||
|
||||
- `type`: rolling operation
|
||||
- `window`: Window size for rolling
|
||||
|
||||
## Examples
|
||||
|
||||
Rolling sum for a series
|
||||
```shell
|
||||
> [1 2 3 4 5] | dfr to-df | dfr rolling sum 2 | dfr drop-nulls
|
||||
```
|
||||
|
||||
Rolling max for a series
|
||||
```shell
|
||||
> [1 2 3 4 5] | dfr to-df | dfr rolling max 2 | dfr drop-nulls
|
||||
```
|
||||
|
Reference in New Issue
Block a user