Expand
Expand
Expand
Expand
Expand
Expand
Expand
Expand
Expand
Exists
: whether or not the field was actually included in the logIs None
: if the field was included, but a value of None
was writtenAND
and OR
operators.
We will also soon support parentheses for nested filter expressions.
Everything else is column specific.
Includes
: whether or not the string includes the substringExcludes
: whether or not the string excludes the substringExpand
==
, !=
, >
, >=
, <
, <=
: standard comparison operatorsExpand
>
, <
: standard comparison operatorsRelative Mode
: select relative to the current timeAbsolute Mode
: select an absolute point in timeExpand
True
: is trueFalse
: is falseExpand
Includes
: whether or not the list includes the item / dict includes the keyExcludes
: whether or not the list excludes the item / dict excludes the keyExpand
AND
operator.
However, you can write your own expressive filter expressions by the global filter,
using basic Python syntax, using the column names as variable names.
x * y > 0
.
We couldn’t achieve this with column filters, but we can with the global filter,
using an expression such as x * y > 0
or ( x > 0 and y > 0) or (x < 0 and y < 0)
.
Expand
Expand
[x, y]
.
Open in your console
(x**2 + y**2)**0.5
:
Expand
Expand