Histogram no longer requires a wrap command before it on unnamed columns (#2332)

This commit is contained in:
Joseph T. Lyons 2020-08-11 17:42:59 -04:00 committed by GitHub
parent 3c18169f63
commit cc3c10867c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,27 +55,27 @@ true
``` ```
```shell ```shell
> random dice --dice 1024 --sides 16 | wrap dice | histogram dice | sort-by count > random dice --dice 1024 --sides 16 | histogram | sort-by count
────┬──────┬───────┬────────────────────────────────────────────────────────────────────────────────────────────────────── ────┬──────┬───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────
# │ dice │ count │ frequency # │ value │ count │ frequency
────┼──────┼───────┼────────────────────────────────────────────────────────────────────────────────────────────────────── ────┼──────┼───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────
0 │ 15 │ 54 │ *********************************************************************** 0 │ 14 │ 54 │ **********************************************************************
1 │ 7 │ 55 │ ************************************************************************ 1 │ 4 │ 55 │ ***********************************************************************
2 │ 1 │ 56 │ ************************************************************************* 2 │ 10 │ 58 │ ***************************************************************************
3 │ 16 │ 57 │ *************************************************************************** 3 │ 15 │ 59 │ ****************************************************************************
4 │ 5 │ 57 │ *************************************************************************** 4 │ 11 │ 60 │ *****************************************************************************
5 │ 3 │ 61 │ ******************************************************************************** 5 │ 7 │ 60 │ *****************************************************************************
6 │ 11 │ 62 │ ********************************************************************************* 6 │ 16 │ 61 │ *******************************************************************************
7 │ 14 │ 64 │ ************************************************************************************ 7 │ 5 │ 62 │ ********************************************************************************
8 │ 9 │ 65 │ ************************************************************************************* 8 │ 3 │ 63 │ *********************************************************************************
9 │ 12 │ 66 │ ************************************************************************************** 9 │ 9 │ 63 │ *********************************************************************************
10 │ 4 │ 67 │ **************************************************************************************** 10 │ 2 │ 64 │ ***********************************************************************************
11 │ 2 │ 69 │ ****************************************************************************************** 11 │ 8 │ 68 │ ****************************************************************************************
12 │ 8 │ 69 │ ****************************************************************************************** 12 │ 1 │ 71 │ ********************************************************************************************
13 │ 6 │ 71 │ ********************************************************************************************* 13 │ 13 │ 73 │ **********************************************************************************************
14 │ 13 │ 75************************************************************************************************** 14 │ 6 │ 76**************************************************************************************************
15 │ 10 │ 76**************************************************************************************************** 15 │ 12 │ 77****************************************************************************************************
────┴──────┴───────┴────────────────────────────────────────────────────────────────────────────────────────────────────── ────┴──────┴───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────
``` ```
## uuid ## uuid