partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 8f3999af38812804c0515ad4490bd4e923d38eb4
parent 0ca7b9ca068f9b631af7d322f86761f3c4d5d892
Author: Felicitus <felicitus@felicitus.org>
Date:   Sun, 11 Sep 2011 13:06:17 +0200

Decreased default sample size to 25

Diffstat:
Msrc/de/RaumZeitLabor/PartKeepr/Statistic/StatisticService.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/de/RaumZeitLabor/PartKeepr/Statistic/StatisticService.php b/src/de/RaumZeitLabor/PartKeepr/Statistic/StatisticService.php @@ -75,7 +75,7 @@ class StatisticService extends Service { if ($this->hasParameter("sampleSize")) { $sampleSize = $this->getParameter("sampleSize"); } else { - $sampleSize = 50; + $sampleSize = 25; } $intervalSize = intval(($end->getTimestamp() - $start->getTimestamp()) / $sampleSize);