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
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/funnel-sequence-plugin.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,9 +56,8 @@ Returns three output tables, which are useful for constructing a sankey diagram
56
56
57
57
## Examples
58
58
59
-
### Exploring storm events
60
-
61
-
The following query looks at the table StormEvents (weather statistics for 2007) and shows which events happened before/after all Tornado events occurred in 2007.
59
+
The following examples show how to use the `funnel_sequence` plugin to analyze storm events.
60
+
The query looks at the table StormEvents (weather statistics for 2007) and shows which events happened before/after all Tornado events occurred in 2007.
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/gamma-function.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,25 @@ Computes the gamma function for the provided *number*.
27
27
28
28
Gamma function of *number*.
29
29
30
+
## Examples
31
+
32
+
The following example shows how to use the `gamma()` function to compute the gamma of the input parameter.
33
+
34
+
:::moniker range="azure-data-explorer"
35
+
> [!div class="nextstepaction"]
36
+
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUShKLS7NKVGwVUhPzM1N1DDVBABf6u5FFwAAAA%3D%3D"target="_blank">Run the query</a>
37
+
::: moniker-end
38
+
39
+
```kusto
40
+
print result = gamma(5)
41
+
```
42
+
43
+
Output:
44
+
45
+
| result |
46
+
|--------|
47
+
| 24 |
48
+
30
49
## Related content
31
50
32
51
For computing log-gamma function, see [loggamma()](loggamma-function.md).
The following example finds the shortest distance between North Las Vegas Airport and a nearby road.
58
56
59
57
:::image type="content" source="media/geo-distance-point-to-line-function/distance-point-to-line.png" alt-text="Screenshot of a map showing the distance between North Las Vegas Airport and a specific road.":::
@@ -73,8 +71,6 @@ print distance_in_meters = geo_distance_point_to_line(-115.199625, 36.210419, dy
73
71
|--------------------|
74
72
| 3797.88887253334 |
75
73
76
-
### Storm events across the south coast
77
-
78
74
The following example finds storm events along the US south coast filtered by a maximum distance of 5 km from the defined shore line.
79
75
80
76
:::moniker range="azure-data-explorer"
@@ -94,8 +90,6 @@ StormEvents
94
90
95
91
:::image type="content" source="media/geo-distance-point-to-line-function/us-south-coast-storm-events.png" alt-text="Screenshot of rendered storm events along the south coast of the US.":::
96
92
97
-
### New York taxi pickups
98
-
99
93
The following example finds New York taxi pickups filtered by a maximum distance of 0.1 meters from the defined multiline.
100
94
101
95
:::moniker range="azure-data-explorer"
@@ -149,8 +143,6 @@ nyc_taxi
149
143
150
144
:::image type="content" source="media/geo-distance-point-to-line-function/lines-folding.png" alt-text="Screenshot of a query map rendering example of lines folded into a multiline. The example is all taxi pickups 10 km away from all Manhattan roads.":::
151
145
152
-
### Invalid LineString
153
-
154
146
The following example returns a null result because of the invalid LineString input.
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/geo-geohash-to-central-point-function.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ The geospatial coordinate values in [GeoJSON Format](https://tools.ietf.org/html
34
34
35
35
## Examples
36
36
37
+
The following example calculates the geospatial coordinates that represent the center of a geohash rectangular area.
38
+
37
39
:::moniker range="azure-data-explorer"
38
40
> [!div class="nextstepaction"]
39
41
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUSjIB5G2Cump+fFAnJFYnBFfkh+fnJpXUpSYEw+W1lAqLs3Lq1TS5KpRSK0oSc1LUUjOzy9KycxLLEktBmoGq9JDEkMozMnPS88sKU1JBSpDUhBtEKujkJNYgk3KMBYAnhfZ4psAAAA="target="_blank">Run the query</a>
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/geo-geohash-to-polygon-function.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ Polygon in [GeoJSON Format](https://tools.ietf.org/html/rfc7946) and of a [dynam
34
34
35
35
## Examples
36
36
37
+
The following example calculates the polygon that represents the geohash rectangular area.
38
+
37
39
:::moniker range="azure-data-explorer"
38
40
> [!div class="nextstepaction"]
39
41
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUXBPzc9ILM4IyM+pTM/PU7BVSE/Nj0+HCMaX5McXQCQ0lFKKTItKlTStAWzxQVs3AAAA"target="_blank">Run the query</a>
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/geo-h3cell-children-function.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,8 @@ Array of H3 Cell children tokens. If the H3 Cell is invalid or child resolution
36
36
37
37
## Examples
38
38
39
+
The following example calculates the H3 cell children.
40
+
39
41
:::moniker range="azure-data-explorer"
40
42
> [!div class="nextstepaction"]
41
43
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUjOyMxJKUrNU7BVSE/Nj88wTk7NyYmHiWqoW5gZJRoamBulQYC6JgDo0XQKNwAAAA=="target="_blank">Run the query</a>
Copy file name to clipboardExpand all lines: data-explorer/kusto/query/geo-h3cell-level-function.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ An integer that represents H3 Cell level. Valid level is in range [0, 15]. If th
31
31
32
32
## Examples
33
33
34
+
The following example calculates the H3 cell resolution.
35
+
34
36
:::moniker range="azure-data-explorer"
35
37
> [!div class="nextstepaction"]
36
38
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUhOzcmJL0otVrBVSE/Nj88wBgvkpJal5mioW5gZJRoamBulQYC6JgA3an62NAAAAA=="target="_blank">Run the query</a>
> <ahref="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUhOzcmJL0otVrBVSE/Nj88wBgvkpJal5miABArygariS2AyGoY6QGigqQkAmqtQej4AAAA="target="_blank">Run the query</a>
0 commit comments