aws.evidently.get_experiment_results
Example SQL Queries
SELECT * FROMaws.evidently.get_experiment_resultsWHERE"experiment" = 'VALUE'AND "metric_names" = 'VALUE'AND "project" = 'VALUE'AND "treatment_names" = 'VALUE';Description
Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. To increase the statistical power, Evidently performs an additional offline p-value analysis at the end of the experiment. Offline p-value analysis can detect statistical significance in some cases where the anytime p-values used during the experiment do not find statistical significance.
Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
Table Definition
| Column Name | Column Data Type |
|---|---|
| experiment Required Input Column The name of the experiment to retrieve the results of. | VARCHAR |
| metric_names Required Input Column The names of the experiment metrics that you want to see the results of. | VARCHAR[] |
Show child fields
| |
| project Required Input Column The name or ARN of the project that contains the experiment that you want to see the results of. | VARCHAR |
| treatment_names Required Input Column The names of the experiment treatments that you want to see the results for. | VARCHAR[] |
Show child fields
| |
| base_stat Input Column The statistic used to calculate experiment results. Currently the only valid value is mean, which uses the mean of the collected values as the statistic. | VARCHAR |
| end_time Input Column The date and time that the experiment ended, if it is completed. This must be no longer than 30 days after the experiment start time. | TIMESTAMP_S |
| period Input Column In seconds, the amount of time to aggregate results together. | BIGINT |
| report_names Input Column The names of the report types that you want to see. Currently, BayesianInference is the only valid value. | VARCHAR[] |
Show child fields
| |
| result_stats Input Column The statistics that you want to see in the returned results.
| VARCHAR[] |
Show child fields
| |
| start_time Input Column The date and time that the experiment started. | TIMESTAMP_S |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| details If the experiment doesn't yet have enough events to provide valid results, this field is returned with the message Not enough events to generate results. If there are enough events to provide valid results, this field is not returned. | VARCHAR |
| reports An array of structures that include the reports that you requested. | STRUCT( |
Show child fields
| |
| results_data An array of structures that include experiment results including metric names and values. | STRUCT( |
Show child fields
| |
| timestamps The timestamps of each result returned. | TIMESTAMP_S[] |
Show child fields
| |