mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.statistics: Return 0 as percentile if data out of range
This commit is contained in:
parent
b21f268615
commit
f3a7b63d84
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ local function percentile(arr, length, pc)
|
|||
local n = pc/100 * (length + 1);
|
||||
local k, d = m_floor(n), n%1;
|
||||
if k == 0 then
|
||||
return arr[1];
|
||||
return arr[1] or 0;
|
||||
elseif k >= length then
|
||||
return arr[length];
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue