View source: R/sequence_funnel.R
funnel_start | R Documentation |
Start a funnel
funnel_start(tbl, moment_type, moment, tstamp, user)
tbl |
A table of different moments and timestamps |
moment_type |
The first moment in the funnel |
moment |
The name of the column with the moment_type |
tstamp |
The name of the column with the timestamps of the moments |
user |
The name of the column indicating the user who did the moment |
library(dplyr)
activity <- tibble::tribble(
~ "user_id", ~ "event", ~ "timestamp",
1, "landing", "2019-07-01",
1, "registration", "2019-07-02",
1, "purchase", "2019-07-07",
1, "purchase", "2019-07-10",
2, "landing", "2019-08-01",
2, "registration", "2019-08-15",
3, "landing", "2019-05-01",
3, "registration", "2019-06-01",
3, "purchase", "2019-06-04",
4, "landing", "2019-06-13")
activity %>%
funnel_start(moment_type = "landing",
moment = "event",
tstamp = "timestamp",
user = "user_id")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.