mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
9 lines
256 B
PowerShell
9 lines
256 B
PowerShell
ColumnChart -Title "Central Limit Theorem" ($(
|
|
for ($i = 1; $i -le 500; $i++) {
|
|
$s=0
|
|
for ($j = 1; $j -le 100; $j++){
|
|
$s+=Get-Random -Minimum 0 -Maximum 2
|
|
}
|
|
$s
|
|
}
|
|
) | Sort | Group | select Count, Name) |