getPrettyPercentFromQuotient($value); } public function compute(Row $row) { $bounceCount = $this->getMetric($row, 'bounce_count'); $visits = $this->getMetric($row, 'nb_visits'); return Piwik::getQuotientSafe($bounceCount, $visits, $precision = 2); } }