Statistics/Basic: Difference between revisions

Content added Content deleted
(→‎{{header|jq}}: move to proper place (part 2))
(→‎{{header|jq}}: 10000000)
Line 2,070: Line 2,070:
pp(.histogram; [range(0;10)] )</lang>
pp(.histogram; [range(0;10)] )</lang>
'''Driver Script''' (e.g. bash)
'''Driver Script''' (e.g. bash)
<lang>for n in 100 1000 1000000 ; do
<lang>for n in 100 1000 1000000 10000000 ; do
echo "Basic statistics for $n PRNs in [0,1]"
echo "Basic statistics for $n PRNs in [0,1]"
prng $n 10 | jq -nrR -f basicStats.jq
prng $n 10 | jq -nrR -f basicStats.jq
Line 2,141: Line 2,141:
9 : ********************
9 : ********************
</pre>
</pre>



=={{header|Jsish}}==
=={{header|Jsish}}==