Skip to main content

LABEL IN GROUP

This command will allow you to filter instances on ranges of numeric values of labels that belong to a specified group.


FORMAT: instances WHERE LABEL_IN_GROUP operator value


DEFINITIONS:

  • instances: Quoted text specifying the label you wish to count in the front timeline or instances. (Can be grouped using OR, AND, NOT)
  • value: The numeric value to compare.

EXAMPLE 1:

show count instances where (LABEL_IN_GROUP "Distances" <= 5)

Returns the number of instances that have labels belonging to the group "Distance" and their name as a number equal or less than 5.

EXAMPLE 2:

show count instances where (LABEL_IN_GROUP "Distance" > 5 AND LABEL_IN_GROUP "Distances" <= 10)

Returns the number of instances that have labels belonging to the group "Distance" and their name as a number greater than 5 and less than or equal to 10.