1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 06:37:26 +02:00
cheatsheets/mixpanel.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

400 B

title category
Mixpanel Analytics

Identify

mixpanel.identify('284')
mixpanel.people.set({ $email: 'hi@gmail.com' })
// Set common properties
mixpanel.register({ age: 28, gender: 'male' })

Track events

mixpanel.track('Login success')
mixpanel.track('Search', { query: 'cheese' })

References