getPrettyPercentFromQuotient($value); } public function compute(Row $row) { $nbVisitsConverted = $this->getMetric($row, 'nb_visits_converted'); $nbVisits = $this->getMetric($row, 'nb_visits'); return Piwik::getQuotientSafe($nbVisitsConverted, $nbVisits, $precision = 4); } }