v.19.14Improvement
Added Strict Parameter in Windowfunnel()
Addedstrictparameter inwindowFunnel(). When thestrictis set, thewindowFunnel()applies conditions only for the unique values. #6548 (achimbab)
Why it matters
Thestrict parameter allows users to refine the behavior of windowFunnel() by focusing only on unique events when evaluating funnel steps. This addresses scenarios where duplicate events could skew funnel analysis, providing more accurate insights.How to use it
To enable this feature, pass thestrict parameter as true in the windowFunnel() function call. For example:SELECT windowFunnel(time_column, event_column, window_size, strict=true) FROM table