January 5, 2022 release notes¶
UI¶
Export CSV or JSON¶
Export observations from a Worksheet stage to a local file. The exported data is one line per observation, in either CSV or NDJSON (newline-delimited JSON) format.

Easier access to data stream datasets¶
Find all your data stream datasets in the left rail, in the Data Streams section of the Other tab

OPAL¶
Test if values are members of a set¶
Test if one or more values are members of a set with the in()
. This function accepts the column name or expression to check, and one or more candidate values.
filter in(user_type, 'guest', 'read-only')
filter in(location_id, 24, 25, 27)
filter in(time_ns/1000000000, 4, 5, 6)