Fenix
metric-hub
Pre-defined segments for fenix
. These segments are defined in metric-hub
new_users
New Users
Clients who were in the experiment in the first day they were seen.
Data Source: baseline_clients_daily
Definition:
COALESCE(LOGICAL_OR(first_seen_date = submission_date), FALSE)
new_and_repeat_users
New and Repeat Users
Clients who were in the experiment within the first 28 days since they were first seen.
Data Source: baseline_clients_daily
Definition:
COALESCE(LOGICAL_OR(DATE_DIFF(submission_date, first_seen_date, DAY) < 28), FALSE)