getMetric($row, 'nb_interactions'); $impressions = $this->getMetric($row, 'nb_impressions'); return Piwik::getQuotientSafe($interactions, $impressions, $precision = 4); } public function format($value, Formatter $formatter) { return $formatter->getPrettyPercentFromQuotient($value); } public function getDependentMetrics() { return array('nb_interactions', 'nb_impressions'); } }