public function AcquiaLiftLearnReport::getOverallConfidence in Acquia Lift Connector 7.2
Gets the overall confidence of the report, based on aggregated data.
Return value
bool TRUE if the report has overall confidence, FALSE otherwise.
File
- includes/
AcquiaLiftLearnReport.inc, line 389
Class
- AcquiaLiftLearnReport
- Class for Acquia Lift Learn Reports.
Code
public function getOverallConfidence() {
if (empty($this->interpretedResults)) {
$this
->getAggregatedData();
}
return $this->interpretedResults['confidence'];
}