forked from extern/nushell
Add a histogram example to the random dice documentation (#2087)
This commit is contained in:
parent
7be49e43fd
commit
ba5d774fe1
@ -54,6 +54,30 @@ true
|
||||
───┴────
|
||||
```
|
||||
|
||||
```shell
|
||||
> random dice --dice 1024 --sides 16 | wrap dice | histogram dice | sort-by count
|
||||
────┬──────┬───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
# │ dice │ count │ frequency
|
||||
────┼──────┼───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
0 │ 15 │ 54 │ ***********************************************************************
|
||||
1 │ 7 │ 55 │ ************************************************************************
|
||||
2 │ 1 │ 56 │ *************************************************************************
|
||||
3 │ 16 │ 57 │ ***************************************************************************
|
||||
4 │ 5 │ 57 │ ***************************************************************************
|
||||
5 │ 3 │ 61 │ ********************************************************************************
|
||||
6 │ 11 │ 62 │ *********************************************************************************
|
||||
7 │ 14 │ 64 │ ************************************************************************************
|
||||
8 │ 9 │ 65 │ *************************************************************************************
|
||||
9 │ 12 │ 66 │ **************************************************************************************
|
||||
10 │ 4 │ 67 │ ****************************************************************************************
|
||||
11 │ 2 │ 69 │ ******************************************************************************************
|
||||
12 │ 8 │ 69 │ ******************************************************************************************
|
||||
13 │ 6 │ 71 │ *********************************************************************************************
|
||||
14 │ 13 │ 75 │ **************************************************************************************************
|
||||
15 │ 10 │ 76 │ ****************************************************************************************************
|
||||
────┴──────┴───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
```
|
||||
|
||||
## uuid
|
||||
|
||||
* `random uuid`: Generate a random uuid4 string
|
||||
|
Loading…
Reference in New Issue
Block a user