我相信你可以查看removeAboveValue和removeBelowValue功能.
例如,要排除低于2且高于10的值:
http://host/render&target=removeAboveValue(removeBelowValue(a.b.c, 2), 10)
Run Code Online (Sandbox Code Playgroud)
忽略范围内的值有点困难,但可以通过汇总先前已过滤数据的系列(未经测试)来实现:
http://host/render&target=sum(removeAboveValue(a.b.c, 2), removeBelowValue(a.b.c, 10))
Run Code Online (Sandbox Code Playgroud)