Skip to content

Commit 4b8d07f

Browse files
Merge pull request #7175 from MicrosoftDocs/main
Auto Publish – main to live - 2025-10-15 11:00 UTC
2 parents 4ca6ff1 + cf3766d commit 4b8d07f

10 files changed

+32
-20
lines changed

data-explorer/kusto/query/funnel-sequence-completion-plugin.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ Returns a single table useful for constructing a funnel diagram for the analyzed
4242

4343
## Examples
4444

45-
### Exploring Storm Events
46-
47-
The following query checks the completion funnel of the sequence: `Hail` -> `Tornado` -> `Thunderstorm Wind`
45+
The following examples show how to use the `funnel_sequence_completion` plugin to analyze storm events.
46+
The query checks the completion funnel of the sequence: `Hail` -> `Tornado` -> `Thunderstorm Wind`
4847
in "overall" time of 1hour, 4hours, 1day.
4948

5049
:::moniker range="azure-data-explorer"

data-explorer/kusto/query/funnel-sequence-plugin.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ Returns three output tables, which are useful for constructing a sankey diagram
5656

5757
## Examples
5858

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.
6261

6362
:::moniker range="azure-data-explorer"
6463
> [!div class="nextstepaction"]

data-explorer/kusto/query/gamma-function.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,25 @@ Computes the gamma function for the provided *number*.
2727

2828
Gamma function of *number*.
2929

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+
> <a href="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+
3049
## Related content
3150

3251
For computing log-gamma function, see [loggamma()](loggamma-function.md).

data-explorer/kusto/query/geo-angle-function.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,3 @@ print is_null = isnull(geo_angle(0, 10, 0, 10, 3, -10))
9595
|is_null|
9696
|---|
9797
|True|
98-

data-explorer/kusto/query/geo-closest-point-on-polygon-function.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ print geo_closest_point_on_polygon(-73.9839, 40.7705, central_park)
7575
|---|
7676
|{"type": "Point","coordinates": [-73.981205580153926, 40.769359452843211] }|
7777

78-
7978
The following example returns a null result because of the invalid coordinate input.
8079

8180
:::moniker range="azure-data-explorer"

data-explorer/kusto/query/geo-distance-point-to-line-function.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ dynamic({"type": "MultiLineString","coordinates": [[line_1, line_2, ..., line_N]
5252
5353
## Examples
5454

55-
### Shortest distance to airport
56-
5755
The following example finds the shortest distance between North Las Vegas Airport and a nearby road.
5856

5957
:::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
7371
|--------------------|
7472
| 3797.88887253334 |
7573

76-
### Storm events across the south coast
77-
7874
The following example finds storm events along the US south coast filtered by a maximum distance of 5 km from the defined shore line.
7975

8076
:::moniker range="azure-data-explorer"
@@ -94,8 +90,6 @@ StormEvents
9490

9591
:::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.":::
9692

97-
### New York taxi pickups
98-
9993
The following example finds New York taxi pickups filtered by a maximum distance of 0.1 meters from the defined multiline.
10094

10195
:::moniker range="azure-data-explorer"
@@ -149,8 +143,6 @@ nyc_taxi
149143

150144
:::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.":::
151145

152-
### Invalid LineString
153-
154146
The following example returns a null result because of the invalid LineString input.
155147

156148
:::moniker range="azure-data-explorer"
@@ -168,8 +160,6 @@ print distance_in_meters = geo_distance_point_to_line(1,1, dynamic({ "type":"Lin
168160
|--------------------|
169161
| |
170162

171-
### Invalid coordinate
172-
173163
The following example returns a null result because of the invalid coordinate input.
174164

175165
:::moniker range="azure-data-explorer"

data-explorer/kusto/query/geo-geohash-to-central-point-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ The geospatial coordinate values in [GeoJSON Format](https://tools.ietf.org/html
3434
3535
## Examples
3636

37+
The following example calculates the geospatial coordinates that represent the center of a geohash rectangular area.
38+
3739
:::moniker range="azure-data-explorer"
3840
> [!div class="nextstepaction"]
3941
> <a href="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUSjIB5G2Cump+fFAnJFYnBFfkh+fnJpXUpSYEw+W1lAqLs3Lq1TS5KpRSK0oSc1LUUjOzy9KycxLLEktBmoGq9JDEkMozMnPS88sKU1JBSpDUhBtEKujkJNYgk3KMBYAnhfZ4psAAAA=" target="_blank">Run the query</a>
@@ -68,8 +70,6 @@ print geohash = geo_geohash_to_central_point("a")
6870
|---|
6971
||
7072

71-
### Creating location deep-links for Bing Maps
72-
7373
You can use the geohash value to create a deep-link URL to Bing Maps by pointing to the geohash center point:
7474

7575
:::moniker range="azure-data-explorer"

data-explorer/kusto/query/geo-geohash-to-polygon-function.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Polygon in [GeoJSON Format](https://tools.ietf.org/html/rfc7946) and of a [dynam
3434
3535
## Examples
3636

37+
The following example calculates the polygon that represents the geohash rectangular area.
38+
3739
:::moniker range="azure-data-explorer"
3840
> [!div class="nextstepaction"]
3941
> <a href="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUXBPzc9ILM4IyM+pTM/PU7BVSE/Nj0+HCMaX5McXQCQ0lFKKTItKlTStAWzxQVs3AAAA" target="_blank">Run the query</a>

data-explorer/kusto/query/geo-h3cell-children-function.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Array of H3 Cell children tokens. If the H3 Cell is invalid or child resolution
3636
3737
## Examples
3838

39+
The following example calculates the H3 cell children.
40+
3941
:::moniker range="azure-data-explorer"
4042
> [!div class="nextstepaction"]
4143
> <a href="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUjOyMxJKUrNU7BVSE/Nj88wTk7NyYmHiWqoW5gZJRoamBulQYC6JgDo0XQKNwAAAA==" target="_blank">Run the query</a>

data-explorer/kusto/query/geo-h3cell-level-function.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ An integer that represents H3 Cell level. Valid level is in range [0, 15]. If th
3131

3232
## Examples
3333

34+
The following example calculates the H3 cell resolution.
35+
3436
:::moniker range="azure-data-explorer"
3537
> [!div class="nextstepaction"]
3638
> <a href="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUhOzcmJL0otVrBVSE/Nj88wBgvkpJal5mioW5gZJRoamBulQYC6JgA3an62NAAAAA==" target="_blank">Run the query</a>
@@ -46,6 +48,7 @@ print cell_res = geo_h3cell_level('862a1072fffffff')
4648
|---|
4749
|6|
4850

51+
4952
:::moniker range="azure-data-explorer"
5053
> [!div class="nextstepaction"]
5154
> <a href="https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAAysoyswrUUhOzcmJL0otVrBVSE/Nj88wBgvkpJal5miABArygariS2AyGoY6QGigqQkAmqtQej4AAAA=" target="_blank">Run the query</a>

0 commit comments

Comments
 (0)