-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Is your feature request related to a problem?
We now possess the ability to run ordered OR unordered funnel analyses.
We can also run queries that return conversion rates for all steps, conversion rates over time, or conversion times bucketed.
However unordered analysis can only be combined with all steps viz. It'd be very useful if each viz type would be able to work with both types of ordering β ordering would then be a simple UI switch in all funnel insights.
Describe the solution you'd like
Ideally the unordered funnel query would return the results in the same format as the ordered one, in which case the base subquery (steps_per_person_query
) could be just swapped out as needed in each dependent final query: steps, trends, time to convert. Maybe that is not be the best way β TBD.
One discrepancy that is also currently in the code is that the base funnel query is ordered, while the unordered one builds on top of the base one. Not sure if that's ideal, because it makes it seem like the ordered one is superior/"senior", when in reality they should be on equal footing, and equally swappable.