You are here

protected function AcquiaLiftReportBase::getLowConfidenceMessage in Acquia Lift Connector 7

Generates a message to show when there is insufficient confidence in the test results.

Return value

string

2 calls to AcquiaLiftReportBase::getLowConfidenceMessage()
AcquiaLiftReport::buildCampaignReports in plugins/agent_types/AcquiaLiftAgent.inc
Implements PersonalizeAgentReportInterface::buildCampaignReports().
AcquiaLiftReportBase::buildConversionSummaryReport in plugins/agent_types/AcquiaLiftAgent.inc
Builds the render array for the summary portion of the report.

File

plugins/agent_types/AcquiaLiftAgent.inc, line 1270
Provides an agent type for Acquia Lift

Class

AcquiaLiftReportBase
Base class providing report data loading functionality common to all Acquia Lift Reports.

Code

protected function getLowConfidenceMessage() {
  return t('There is not enough data to declare a winner with @confidence% confidence. Consider letting the test run longer before using the results.', array(
    '@confidence' => $this
      ->getConfidenceMeasure(),
  ));
}