Cohorts are dynamic user segments based on behaviors or attributes. Use cohorts to compare user groups, filter reports, and understand how different segments perform.
Users who:├── Did [event_name]│ ├── Frequency: at least N times / exactly N times / at most N times│ ├── Time frame: in the last N days / between dates / ever│ └── Where: [property filters]│└── Did NOT do [event_name] └── Time frame: in the last N days / ever
Examples:
✓ Did "swap_completed" at least 5 times in the last 30 days✓ Did NOT do "wallet_connect" in the last 7 days✓ Did "transaction" where chain = "ethereum"
"Power Users"├── Did any_event at least 50 times├── In the last 30 days"Casual Users"├── Did any_event at least 5 times├── AND at most 20 times├── In the last 30 days"At-Risk Users"├── Did any_event in the last 90 days├── AND did NOT do any_event in the last 14 days
"Whales"├── User property: total_volume_usd > 100000├── OR did transaction where value > 10 ETH"Multi-Chain Users"├── Did transaction where chain = "ethereum"├── AND did transaction where chain = "polygon"├── AND did transaction where chain = "arbitrum""New Transactors"├── Did transaction├── In the last 7 days├── AND did NOT do transaction before 7 days ago
"New Users (This Week)"├── User property: first_seen in the last 7 days"Completed Onboarding"├── Did onboarding_completed"Churned"├── Did any_event in the last 90 days├── AND did NOT do any_event in the last 30 days
"Twitter Acquisition"├── User property: utm_source = "twitter"├── OR initial_referrer contains "twitter.com""Organic Search"├── User property: utm_medium = "organic"├── OR initial_referrer contains "google.com"├── OR initial_referrer contains "bing.com"
"DeFi Power Users"├── Did swap_completed at least 10 times├── AND did liquidity_added at least once├── In the last 30 days"NFT Collectors"├── Did nft_purchased at least 3 times├── OR user property: nft_count > 10"Wallet Veterans"├── User property: wallet_age_days > 365├── AND user property: total_transaction_count > 100
✅ Focused:Users who swapped 10+ times in 30 days❌ Overly complex:Users who swapped 10+ times AND visited docs AND have pro plan AND from US AND connected MetaMask AND wallet age > 180 days AND...