mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
11 lines
403 B
PowerShell
11 lines
403 B
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
ColumnChart -Title "Central Limit Theorem" -NoLegend ($(
|
|
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-Object | Group-Object | Select-Object Count, Name) |