function _get_low_confidence_message in Acquia Lift Connector 7.2
Generates a message to show when there is insufficient confidence in the test results.
Return value
string
1 call to _get_low_confidence_message()
- _build_experiment_report in ./
acquia_lift.admin.inc - Builds the render array for the summary portion of the report.
File
- ./
acquia_lift.admin.inc, line 2763 - acquia_lift.admin.inc Provides functions needed for the admin UI.
Code
function _get_low_confidence_message($confidence_measure) {
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' => $confidence_measure,
));
}