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
We need a way to filter the total amount of people that have been in a stage of the funnel per cohort.
EG:
If we have 1000 applicants
We need to know how many out of the 1000 have though each phase .
One to implement this is to associate to each applicant a hash where the keys are the funnel stages and the values are true or false. When we assign a participant to a stage, for example test_sent, the test_sent value in the hash should be set to true.
This way we could filter all the people that have been through each stage.
How could we set this info for previous participants.
Questions we need to answer:
How many people have been through each stage of the funnel
The conversion rate between stage.
The text was updated successfully, but these errors were encountered:
We need a way to filter the total amount of people that have been in a stage of the funnel per cohort.
EG:
If we have 1000 applicants
We need to know how many out of the 1000 have though each phase .
One to implement this is to associate to each applicant a hash where the keys are the funnel stages and the values are true or false. When we assign a participant to a stage, for example test_sent, the test_sent value in the hash should be set to true.
This way we could filter all the people that have been through each stage.
How could we set this info for previous participants.
Questions we need to answer:
The text was updated successfully, but these errors were encountered: