i_danSwellChain: Cohort Retention
    Updated 2 days ago
    WITH cohorts AS (
    SELECT
    from_address
    , MIN(DATE_TRUNC('month', block_timestamp)) AS cohort_month
    FROM swell.core.fact_transactions
    WHERE from_address != '0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001'
    AND from_address != '0x339d413ccefd986b1b3647a9cfa9cbbe70a30749'
    GROUP BY 1
    ),
    monthly_activity AS (
    SELECT
    from_address
    , DATE_TRUNC('month', block_timestamp) AS activity_month
    FROM swell.core.fact_transactions
    ),
    cohort_retention AS (
    SELECT
    c.cohort_month
    , m.activity_month
    , COUNT(DISTINCT c.from_address) AS retained_users
    FROM cohorts c
    JOIN monthly_activity m
    ON c.from_address = m.from_address
    GROUP BY 1, 2
    )
    SELECT
    cohort_month
    , RANK() OVER (PARTITION BY activity_month ORDER BY cohort_month ASC) AS CohortMonth
    , 'Month '||CohortMonth AS "Cohort Month"
    , activity_month
    , RANK() OVER (PARTITION BY cohort_month ORDER BY activity_month ASC) AS ActivityMonth
    , 'Month '||(ActivityMonth + CohortMonth - 1) AS "Activity Month"
    , retained_users
    FROM cohort_retention
    ORDER BY 1, 4

    Last run: 2 days ago
    COHORT_MONTH
    COHORTMONTH
    Cohort Month
    ACTIVITY_MONTH
    ACTIVITYMONTH
    Activity Month
    RETAINED_USERS
    1
    2024-11-01 00:00:00.0001Month 12024-11-01 00:00:00.0001Month 13
    2
    2024-11-01 00:00:00.0001Month 12024-12-01 00:00:00.0002Month 23
    3
    2024-11-01 00:00:00.0001Month 12025-01-01 00:00:00.0003Month 33
    4
    2024-11-01 00:00:00.0001Month 12025-02-01 00:00:00.0004Month 43
    5
    2024-11-01 00:00:00.0001Month 12025-03-01 00:00:00.0005Month 53
    6
    2024-11-01 00:00:00.0001Month 12025-04-01 00:00:00.0006Month 63
    7
    2024-12-01 00:00:00.0002Month 22024-12-01 00:00:00.0001Month 21586
    8
    2024-12-01 00:00:00.0002Month 22025-01-01 00:00:00.0002Month 3842
    9
    2024-12-01 00:00:00.0002Month 22025-02-01 00:00:00.0003Month 4523
    10
    2024-12-01 00:00:00.0002Month 22025-03-01 00:00:00.0004Month 5472
    11
    2024-12-01 00:00:00.0002Month 22025-04-01 00:00:00.0005Month 663
    12
    2025-01-01 00:00:00.0003Month 32025-01-01 00:00:00.0001Month 38368
    13
    2025-01-01 00:00:00.0003Month 32025-02-01 00:00:00.0002Month 41650
    14
    2025-01-01 00:00:00.0003Month 32025-03-01 00:00:00.0003Month 51306
    15
    2025-01-01 00:00:00.0003Month 32025-04-01 00:00:00.0004Month 6114
    16
    2025-02-01 00:00:00.0004Month 42025-02-01 00:00:00.0001Month 42792
    17
    2025-02-01 00:00:00.0004Month 42025-03-01 00:00:00.0002Month 5391
    18
    2025-02-01 00:00:00.0004Month 42025-04-01 00:00:00.0003Month 652
    19
    2025-03-01 00:00:00.0005Month 52025-03-01 00:00:00.0001Month 51621
    20
    2025-03-01 00:00:00.0005Month 52025-04-01 00:00:00.0002Month 6377
    21
    2KB
    2s