1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-30 14:40:06 +02:00

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

This commit is contained in:
Joseph T. Lyons
2020-08-11 17:42:59 -04:00
committed by GitHub
parent 3c18169f63
commit cc3c10867c

@ -55,27 +55,27 @@ true
```
```shell
> random dice --dice 1024 --sides 16 | wrap dice | histogram dice | sort-by count
────┬──────┬───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────
# │ dice │ count │ frequency
────┼──────┼───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────
0 1554 │ ***********************************************************************
1 755 │ ************************************************************************
2 156 │ *************************************************************************
3 1657 │ ***************************************************************************
4 557 │ ***************************************************************************
5 361 │ ********************************************************************************
6 1162 │ *********************************************************************************
7 1464 │ ************************************************************************************
8 965 │ *************************************************************************************
9 1266 │ **************************************************************************************
10467 │ ****************************************************************************************
11269 │ ******************************************************************************************
12869 │ ******************************************************************************************
13671 │ *********************************************************************************************
141375 │ **************************************************************************************************
151076 │ ****************************************************************************************************
────┴──────┴───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────
> random dice --dice 1024 --sides 16 | histogram | sort-by count
────┬──────┬───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────
# │ value │ count │ frequency
────┼──────┼───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────
014 54 │ **********************************************************************
14 55 │ ***********************************************************************
21058 │ ***************************************************************************
315 59 │ ****************************************************************************
41160 │ *****************************************************************************
57 60 │ *****************************************************************************
616 61 │ *******************************************************************************
75 62 │ ********************************************************************************
83 63 │ *********************************************************************************
99 63 │ *********************************************************************************
102 64 │ ***********************************************************************************
118 68 │ ****************************************************************************************
121 71 │ ********************************************************************************************
131373 │ **********************************************************************************************
146 76 │ **************************************************************************************************
1512 77 │ ****************************************************************************************************
────┴──────┴───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────
```
## uuid