mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 11:45:23 +02:00
feat: enable custom baseline periods for Experiments to solve seasonality
This commit is contained in:
@@ -318,6 +318,8 @@ export interface Experiment {
|
||||
marketplace: string;
|
||||
start_date: string;
|
||||
end_date?: string;
|
||||
baseline_start_date?: string;
|
||||
baseline_end_date?: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
hypothesis?: string;
|
||||
@@ -357,6 +359,8 @@ export interface ExperimentCreateInput {
|
||||
marketplace: string;
|
||||
start_date: string;
|
||||
end_date?: string;
|
||||
baseline_start_date?: string;
|
||||
baseline_end_date?: string;
|
||||
hypothesis?: string;
|
||||
primary_metric: ExperimentMetric;
|
||||
target_lift_percent?: number;
|
||||
|
||||
Reference in New Issue
Block a user