1.新增留存分析区间筛选功能,规则:大于值1,小于等于值2

This commit is contained in:
李伟 2022-06-08 10:28:04 +08:00
parent 75615f8bfc
commit 67e16bb812

View File

@ -280,6 +280,9 @@ class BehaviorAnalysis:
where.append(col > ftv[0])
elif comparator == '<':
where.append(col < ftv[0])
elif comparator == 'range':
where.append(col > ftv[0])
where.append(col <= ftv[1])
elif comparator == 'is not null':
where.append(col.isnot(None))