2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: rotate
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Rotates a table clockwise (default) or counter-clockwise (use --ccw flag).
|
|
|
|
|
|
|
|
## Signature
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
```> rotate ...rest --ccw```
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `...rest`: the names to give columns once rotated
|
|
|
|
- `--ccw`: rotate counter clockwise
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
Rotate 2x2 table clockwise
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2]] | rotate
|
|
|
|
```
|
|
|
|
|
|
|
|
Rotate 2x3 table clockwise
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2] [3 4] [5 6]] | rotate
|
|
|
|
```
|
|
|
|
|
|
|
|
Rotate table clockwise and change columns names
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2]] | rotate col_a col_b
|
|
|
|
```
|
|
|
|
|
|
|
|
Rotate table counter clockwise
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2]] | rotate --ccw
|
|
|
|
```
|
|
|
|
|
|
|
|
Rotate table counter-clockwise
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2] [3 4] [5 6]] | rotate --ccw
|
|
|
|
```
|
|
|
|
|
|
|
|
Rotate table counter-clockwise and change columns names
|
|
|
|
```shell
|
|
|
|
> [[a b]; [1 2]] | rotate --ccw col_a col_b
|
|
|
|
```
|