how to gather a list of all unique events from the "Events" list and filter them out by platform?
Hi Victoria D., Please stand by as I search the Mixpanel knowledge base for an AI-powered answer. I normally take about 15 seconds or so. In case AI cannot answer your question, feel free to reach out to Mixpanel support at mixpanel.com/get-support. If you have follow-up questions for this thread, please tag me again with your question: @kapa.ai <follow-up question> đź‘‹
Feel free to ask a follow-up question once I've answered by mentioning me with @kapa.ai
To gather a list of all unique events from the "Events" list and filter them by platform in Mixpanel, you can use a couple of different approaches:
Viewing All Events
You can see a complete list of all your tracked events from the dropdown menu in Insights. As mentioned in the Mixpanel Community post, you can: 1. Use the dropdown in Insights to see all events 2. Add tags to events with Lexicon to bookmark the most important onesMixpanel Community: Top posts from 2021
Filtering Events by Platform
To filter events by platform, you can use the "Operating System" property that Mixpanel automatically collects. The JavaScript, iOS, and Android libraries store this property by default, making it easy to differentiate between actions taken on different platforms.As noted in Mixpanel's documentation: > If you send events from all platforms to one project, you can still differentiate actions taken on your app vs. website via segmentation and filtering using the Operating System property (the Mixpanel JavaScript, iOS, and Android libraries store the Operating System property by default).Developer Environments
Using the Query API
For programmatic access, you can use Mixpanel's Query API to get a list of the most common events: LBKSGET /events/namesLBKS
This endpoint returns a list of the most common events over the last 31 days, which you can then filter by platform in your application.Query API - Event Breakdown
Using Data Views for Platform-Specific Analysis
If you regularly need to analyze platform-specific data, you might want to consider creating Data Views. Data Views allow you to create a mini Mixpanel project within your main project that only displays the events and properties you specify: > You can create a Data View (a mini Mixpanel project within a Mixpanel project) that will only display events and properties you'd like that specific Data View to contain.This would allow you to create platform-specific views (e.g., iOS app view, Android app view, Web view) to easily access the data that pertains to each platform without having to filter every time.Data Views: Data Classification in MixpanelBy using these methods, you can effectively gather and filter your events by platform in Mixpanel.
kapa.ai is still learning and improving, please let me know how I did by reacting below.
ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.