You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where the facet is the name of the attribute of the diagnostic to test, and the operator is one of:
31
+
</p>
32
+
<dl>
33
+
<dt>:</dt>
34
+
<dd>A colon tests whether the value is <em>in</em> (is a substring of) the facet.</dd>
35
+
<dt>=</dt>
36
+
<dd>An equals sign tests whether the value is <em>exactly equal</em> to the facet.</dd>
37
+
<dt><, >, <=, >=</dt>
38
+
<dd>A less-than, greater-than, less-than-or-equal or greater-than-or-equal sign tests whether the value sorts before or after the facet, allowing for ranges of dates and numbers.</dd>
39
+
</dl>
40
+
<p>
41
+
If no facet is specified it defaults to checking the value is in the title, equivalent to <code>title:value</code>.
42
+
Values may be quoted to include special characters, such as spaces.
43
+
</p>
44
+
<p>Conditions may be combined with <code>AND</code> or <code>OR</code>, or prefixed with <code>NOT</code> to get the inverse.</p>
45
+
<h3>Examples</h3>
46
+
<dl>
47
+
<dt>histogram</dt>
48
+
<dd>"histogram" in the title.</dd>
49
+
<dt>title:"air temperature"</dt>
50
+
<dd>"air temperature" in the title.</dd>
51
+
<dt>field:temperature</dt>
52
+
<dd>"temperature" in facet "field".</dd>
53
+
<dt>field=temperature</dt>
54
+
<dd>"temperature" exactly matches field.</dd>
55
+
<dt>NOT temperature</dt>
56
+
<dd>Not "temperature" in title.</dd>
57
+
<dt>field=x_wind OR field=y_wind</dt>
58
+
<dd>field does not equal "x_wind" or "y_wind".</dd>
59
+
<dt>histogram AND field:temperature</dt>
60
+
<dd>"histogram" in title and "temperature in facet "field".</dd>
61
+
<dt>(histogram AND field:temperature) OR (time_series AND field:humidity)</dt>
62
+
<dd>Histograms of temperature and time series of humidity. Parenthesis indicate precedence.</dd>
0 commit comments