mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
11 lines
180 B
Ruby
11 lines
180 B
Ruby
module ArrayMonkeyPatches
|
|
def average
|
|
sum.to_f / size
|
|
end
|
|
|
|
def remove_zeros
|
|
reject { |item| item == 0 || item.to_f.nan? }
|
|
end
|
|
end
|
|
|
|
Array.include ArrayMonkeyPatches
|