You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/docs/boards/advanced.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ For example: a join membership club event happened 100 times yesterday, but 0 so
125
125
Reports are always saved to boards. Previously, reports were separately saved and added to boards. In boards now, when you save a report, you'll be prompted to save it to a specific board. In essence, the board now acts as a folder, with many potential purposes, including:
126
126
127
127
- A centralized place to track numerous metrics related to a product launch
128
-
- A chain of analyses digging into a particular behaviour or issue
128
+
- A chain of analyses digging into a particular behavior or issue
129
129
- A set of draft reports you're working on
130
130
131
131
This will make it easy to keep reports organized, and reduce time wasted recreating the same reports again and again.
Copy file name to clipboardExpand all lines: pages/docs/cohort-sync/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ $email
17
17
$phone
18
18
```
19
19
20
-
If these properties are not present in your project, users might not be matched in the systems. If an integration partner doesn't use a property to match, it is dropped before ingestion. Please refer to the individual Cohort Sync Help Center pages for the behaviour for specific partners.
20
+
If these properties are not present in your project, users might not be matched in the systems. If an integration partner doesn't use a property to match, it is dropped before ingestion. Please refer to the individual Cohort Sync Help Center pages for the behavior for specific partners.
21
21
22
22
The email address and phone number properties will only show in the manual CSV exports for Google Ads and Facebook integrations.
Copy file name to clipboardExpand all lines: pages/docs/data-structure/property-reference.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Mixpanel has many Properties defined in its Data Model.
9
9
|[Event Properties](/docs/data-structure/events-and-properties)| Event Properties describes the events that are tracked within your product. |
10
10
|[Super Properties](/docs/tracking-methods/sdks/javascript#super-properties)| Super Properties are a logical term for global Event Properties that, after registration, are saved into the end user's device, and appended to every event from that device until persistence is cleared. This logical term is mostly applicable to our client-side libraries. |
11
11
|[User Profile Properties](/docs/data-structure/user-profiles)| User Profile Properties describe your users (they typically store current demographical information). User profiles are joined to events based on [Distinct ID](/docs/tracking-methods/identifying-users#what-is-distinct-id). |
12
-
|[Group Profile Properties](/docs/data-structure/advanced/group-analytics#group-profiles)| Group Profile Properties describe group level information (similar to User Profiles Properties at user level). With Mixpanel’s [Group Analytics](/docs/data-structure/advanced/group-analytics), multiple users can be grouped and behavioural data analysed at a customised group level (such as company, account). Group profiles are joined to events on your chosen [Group Key](/docs/data-structure/advanced/group-analytics#group-keys-tracked-as-event-properties). |
12
+
|[Group Profile Properties](/docs/data-structure/advanced/group-analytics#group-profiles)| Group Profile Properties describe group level information (similar to User Profiles Properties at user level). With Mixpanel’s [Group Analytics](/docs/data-structure/advanced/group-analytics), multiple users can be grouped and behavioral data analysed at a customised group level (such as company, account). Group profiles are joined to events on your chosen [Group Key](/docs/data-structure/advanced/group-analytics#group-keys-tracked-as-event-properties). |
13
13
|[Lookup Tables](/docs/data-structure/lookup-tables)| Lookup Tables allow you to dynamically extend additional properties mapped to an existing Event or User Property. For example, if you create a lookup table for "Songs" (that contains additional properties like `hash_tags`, `top_10`, `all_time_favorite`) and map it to an event property `song_id`; you can use these additional properties when doing filtering or breakdowns for events that has `song_id` as an event property. |
14
14
|[Default Properties](/docs/data-structure/property-reference#default-properties)| Default Properties (for Events and User Profiles) are collected and populated with values automatically in Mixpanel. This can happen upon data ingestion or when using certain Mixpanel client-side SDKs. Typically, they have a dollar sign ($) or “mp\_” as prefix to distinguish them from normal properties. |
15
15
| Reserved Properties | Mixpanel reserves certain property names (for [Events](/docs/data-structure/events-and-properties#reserved-event-properties) and [User Profiles](/docs/data-structure/user-profiles#reserved-user-properties)) for special use cases, and these may or may not be automatically populated with values. The purpose of such Reserved Properties are for processing (ie event time stamping) or for specific system features (eg: cohort exports). Examples: `time`, `$email`, `$phone`, `$name`, `$created`. |
@@ -152,7 +152,7 @@ Mixpanel supports five data types for properties: String, Numeric, Boolean, Date
152
152
153
153
### List
154
154
155
-
- A list of values as a JSON array e.g Favourite Genres = ["Folk","Alternative"] or Favourite Numbers = [1,5,10.0]
155
+
- A list of values as a JSON array e.g Favorite Genres = ["Folk","Alternative"] or Favorite Numbers = [1,5,10.0]
156
156
- Limits of a List property: Event Property = 8KB, User Profile Property = 256KB
157
157
- Each item in a list would be further limited by their data type's limits; example: a list of strings would be limited by 255 bytes per string. Also refer to [List of Objects](/docs/data-structure/property-reference#list-of-objects) covered below.
158
158
- Mixpanel lists are not ordered (i.e. position of values in a list are not significant in Mixpanel reports) and are useful for grouping or analysing similar values across events. Read more details on [List Property Support](/docs/features/advanced#list-property-support) in reports.
Copy file name to clipboardExpand all lines: pages/docs/data-structure/user-profiles.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -193,4 +193,4 @@ Mixpanel is 100% compatible with Segment; just follow Segment's best practices.
193
193
User Profiles are mutable, which means new ones can be added and existing ones can be updated or deleted. Mixpanel automatically maintains an "Updated at" (`$last_seen`) property, which contains the last timestamp that a user profile was updated. "Updated at" does not change if the user does a new event; it only changes when the profile is updated. "Updated at" also does not change for profile updates made via the UI or if the `$ignore_time` parameter is set to `true` (see example from [PHP SDK](/docs/tracking-methods/sdks/php#setting-profile-properties)).
194
194
195
195
### Where can I learn more about Group Profiles?
196
-
You can get an overview of how Group Profiles relate to Mixpanel's Data Model under the section [Group Level Behaviours and Demographics](/docs/tutorials/plan/tracking-strategy#group-level-behaviours-and-demographics) in our tutorials. A more detailed explanation of [Group Profiles](/docs/data-structure/advanced/group-analytics#group-profiles) is documented under our [Group Analytics](/docs/data-structure/advanced/group-analytics) page.
196
+
You can get an overview of how Group Profiles relate to Mixpanel's Data Model under the section [Group Level Behaviors and Demographics](/docs/tutorials/plan/tracking-strategy#group-level-behaviors-and-demographics) in our tutorials. A more detailed explanation of [Group Profiles](/docs/data-structure/advanced/group-analytics#group-profiles) is documented under our [Group Analytics](/docs/data-structure/advanced/group-analytics) page.
Copy file name to clipboardExpand all lines: pages/docs/migration/flurry.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ We also support additional data for extending your use cases with Mixpanel:
56
56
57
57
### ID Management Differences
58
58
59
-
Mixpanel supports stitching user behaviour pre-login (e.g. traffic from your website, docs, blog) and post-login (once the user has signed up). This helps answer questions like:
59
+
Mixpanel supports stitching user behavior pre-login (e.g. traffic from your website, docs, blog) and post-login (once the user has signed up). This helps answer questions like:
60
60
61
61
- What % of site visitors end signing up?
62
62
- How much of my Purchase revenue can I attribute to a particular campaign?
@@ -66,7 +66,7 @@ This system is called [ID Merge](/docs/tracking-methods/id-management/identifyin
66
66
67
67

68
68
69
-
Anonymous users on Flurry are also identified based on their device IDs. Similarly, users can be identified using the Flurry.setUserId method to capture the user ID. The key difference here is though: Flurry does not support the stitching of user behaviour pre-login and post. That means in the Charlie example above, we will not be able to match Charlie across the Android or iOS devices. [User IDs are set as user properties only in Flurry on the device level](https://developer.yahoo.com/flurry/docs/analytics/rdd/), and [not applied to multiple devices](https://developer.yahoo.com/flurry/docs/analytics/userproperties/#:~:text=Flurry%20User%20Properties%20are%20captured,devices%20with%20the%20same%20UserID). As a consequence, it can be difficult to do user data reconciliation between Mixpanel and Flurry because users may be overstated on Flurry.
69
+
Anonymous users on Flurry are also identified based on their device IDs. Similarly, users can be identified using the Flurry.setUserId method to capture the user ID. The key difference here is though: Flurry does not support the stitching of user behavior pre-login and post. That means in the Charlie example above, we will not be able to match Charlie across the Android or iOS devices. [User IDs are set as user properties only in Flurry on the device level](https://developer.yahoo.com/flurry/docs/analytics/rdd/), and [not applied to multiple devices](https://developer.yahoo.com/flurry/docs/analytics/userproperties/#:~:text=Flurry%20User%20Properties%20are%20captured,devices%20with%20the%20same%20UserID). As a consequence, it can be difficult to do user data reconciliation between Mixpanel and Flurry because users may be overstated on Flurry.
Copy file name to clipboardExpand all lines: pages/guides/implement/establish-governance.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Establish Data Governance
2
2
3
-
Implementing your tracking plan by sending data into Mixpanel and conducting Quality Assurance test is your first step to getting insights about your users' behaviours. Keeping your data in production clean, concise, and consistent as you add more tracking, requires you to establish a data governance framework.
3
+
Implementing your tracking plan by sending data into Mixpanel and conducting Quality Assurance test is your first step to getting insights about your users' behaviors. Keeping your data in production clean, concise, and consistent as you add more tracking, requires you to establish a data governance framework.
4
4
5
5
Data governance involves key data stakeholders establishing a methodology, process, or strategy to ensure Mixpanel implementation continues to be consistent, accurate, and trustworthy. It need not be complex, but should focus on the following principles:
Copy file name to clipboardExpand all lines: pages/guides/launch/analyze-conversions.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Go beyond looking at overall conversion, view conversion trend over time, distri
21
21
</p>
22
22
23
23
## Viewing as a Flow
24
-
Oftentimes, knowing what the conversion is or how it has changed over time is not actionable in of itself. Beyond creating cohorts on users who have dropped off to send them downstream to CRM tools for re-engagement, what marketers and product managers typically want to know is, where precisely did people drop off? What are the typical user flows or behaviour that causes users to drop off? Learn more about it [here](/docs/reports/funnels#view-as-flow).
24
+
Oftentimes, knowing what the conversion is or how it has changed over time is not actionable in of itself. Beyond creating cohorts on users who have dropped off to send them downstream to CRM tools for re-engagement, what marketers and product managers typically want to know is, where precisely did people drop off? What are the typical user flows or behavior that causes users to drop off? Learn more about it [here](/docs/reports/funnels#view-as-flow).
Copy file name to clipboardExpand all lines: pages/guides/launch/discover-insights.mdx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Discover Insights
2
2
3
-
[Insights](/docs/reports/insights) is a powerful and flexible reporting tool that allows you to easily slice and dice user behaviour on your platforms. You can analyze events, cohorts and user profiles, and display the data in a wide variety of chart types.
3
+
[Insights](/docs/reports/insights) is a powerful and flexible reporting tool that allows you to easily slice and dice user behavior on your platforms. You can analyze events, cohorts and user profiles, and display the data in a wide variety of chart types.
Other more advanced questions that Insights can help answer include: how you can segment your users not just by who they are (i.e. user attributes), but what they do. This is a common ask from product managers - to be able to understand for example the number of times users typically view a product before purchasing. Or more simply, you might be interested in looking at what the distribution of your cart value per user is, or the distinct number of days a month that a user might come to your site to make a purchase. The following video walks through some of these examples:
Copy file name to clipboardExpand all lines: pages/guides/plan/setup.mdx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Overview
2
2
3
-
Before you start sending data into your Mixpanel project, it's important to take some time to setup your Mixpanel instance and plan out what actions or behaviours you want to track, in order to achieve your product or business goals.
3
+
Before you start sending data into your Mixpanel project, it's important to take some time to setup your Mixpanel instance and plan out what actions or behaviors you want to track, in order to achieve your product or business goals.
4
4
5
5
<br />
6
6
-[x][Setup](/docs/tutorials/plan/setup#setting-up-mixpanel)*(for Organization Owners and Admins)* - takes you through how you should go about setting up your Mixpanel Organization and the underlying Projects.
@@ -43,7 +43,7 @@ We recommend using the **Simplied API** option as it is a straightforward simple
43
43
44
44
## Development and Production Project Setup
45
45
46
-
We recommend that you minimally setup two Mixpanel projects, one for **Development** data and another for **Production** data. This is to ensure that you keep development test data separate from actual live user behavioural data. Read more details about [Developer Environments](/docs/best-practices/developer-environments).
46
+
We recommend that you minimally setup two Mixpanel projects, one for **Development** data and another for **Production** data. This is to ensure that you keep development test data separate from actual live user behavioral data. Read more details about [Developer Environments](/docs/best-practices/developer-environments).
@@ -62,7 +62,7 @@ By default, all data in a Mixpanel project is accessible to all your users in th
62
62
63
63
### Data Views
64
64
65
-
If for instance, you want to provide the web team only with access to web events, and the iOS and Android teams access to their specific events, but still want the business teams to have a single customer view of the customer's behaviour across the different platforms. [Data Views](/docs/data-governance/data-views-and-classification) can help with this. It enables Project Owners and Admins to manage data access for a group of users within a single Mixpanel project for privacy and productivity purposes.
65
+
If for instance, you want to provide the web team only with access to web events, and the iOS and Android teams access to their specific events, but still want the business teams to have a single customer view of the customer's behavior across the different platforms. [Data Views](/docs/data-governance/data-views-and-classification) can help with this. It enables Project Owners and Admins to manage data access for a group of users within a single Mixpanel project for privacy and productivity purposes.
0 commit comments