Activation
info
View this example in Motif here.
This example identifies a pattern associated with activation (using the favorite feature twice) then looks at the time it takes users to get there.
Video
SOL query
// Match a pattern of signup, followed by adding a favorite twice, with any action between
match signup >> PreActivation()* >> FirstFavorite(favorites_add)? >> * >> SecondFavorite(favorites_add)?
Key steps
- Align users on the
signup
event, followed by anything or nothing, followed by our activation,favorites_add
, which is optional.
match signup >> * >> favorites_add?
- Add a tag to label all events ahead of our activation.
match signup >> * >> FirstFavorite(favorites_add)? >> * >> SecondFavorite(favorite_add)?
- Plot the duration from
signup
tofavorites_add
, binned and cumulated.