Skip to content

Commit

Permalink
Merge pull request #2370 from dyadav7/user/deepyadav/related_links
Browse files Browse the repository at this point in the history
Added related link for avg, min, max, percentile functions
  • Loading branch information
Court72 authored Sep 18, 2024
2 parents 910a2fd + 1ae0e72 commit 2ed3147
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 2 deletions.
6 changes: 6 additions & 0 deletions data-explorer/kusto/query/avg-aggregation-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@ The results table shown includes only the first 10 rows.
| NEBRASKA | 21366.36467 |
| NEW YORK | 5.714285714 |
| ... | ... |

## Related content

* [min function](min-aggregation-function.md)
* [max function](max-aggregation-function.md)
* [percentile function](percentiles-aggregation-function.md)
5 changes: 5 additions & 0 deletions data-explorer/kusto/query/make-timespan-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,8 @@ print ['timespan'] = make_timespan(1,12,30,55.123)
| `timespan` |
|---|
|1.12:30:55.1230000|

## Related content

* [timespan datatype](scalar-data-types/timespan.md)
* [totimespan function](totimespan-function.md)
6 changes: 6 additions & 0 deletions data-explorer/kusto/query/max-aggregation-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,9 @@ StormEvents
| LatestEvent |
|--|
| 2007-12-31T23:53:00Z |

## Related content

* [min function](min-aggregation-function.md)
* [avg function](avg-aggregation-function.md)
* [percentile function](percentiles-aggregation-function.md)
7 changes: 7 additions & 0 deletions data-explorer/kusto/query/min-aggregation-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,10 @@ StormEvents
| FirstEvent |
|--|
| 2007-01-01T00:00:00Z |

## Related content

* [max function](max-aggregation-function.md)
* [avg function](avg-aggregation-function.md)
* [percentile function](percentiles-aggregation-function.md)
* [min-of function](min-of-function.md)
4 changes: 4 additions & 0 deletions data-explorer/kusto/query/parse-json-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,7 @@ because its declared type is `dynamic`.
let d='{"a":123, "b":"{\\"c\\":456}"}';
print d_b_c=parse_json(tostring(parse_json(d).b)).c
```

## Related content

* [parse operator](parse-operator.md)
1 change: 1 addition & 0 deletions data-explorer/kusto/query/parse-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ Traces

## Related content

* [parse-json function](parse-json-function.md)
* [extract function](extract-function.md)
* [extract-all function](extract-all-function.md)
* [extract-json function](extract-json-function.md)
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,8 @@ The percentiles aggregate provides an approximate value using [T-Digest](https:/
>
> * The bounds on the estimation error vary with the value of the requested percentile. The best accuracy is at both ends of the [0..100] scale. Percentiles 0 and 100 are the exact minimum and maximum values of the distribution. The accuracy gradually decreases towards the middle of the scale. It's worst at the median and is capped at 1%.
> * Error bounds are observed on the rank, not on the value. Suppose percentile(X, 50) returned a value of Xm. The estimate guarantees that at least 49% and at most 51% of the values of X are less or equal to Xm. There is no theoretical limit on the difference between Xm and the actual median value of X.
> * The estimation may sometimes result in a precise value but there are no reliable conditions to define when it will be the case.
> * The estimation may sometimes result in a precise value but there are no reliable conditions to define when it will be the case.
## Related content

* [avg function](avg-aggregation-function.md)
3 changes: 2 additions & 1 deletion data-explorer/kusto/query/scalar-data-types/timespan.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ print

## Related content

* [totimespan()](../totimespan-function.md)
* [totimespan function](../totimespan-function.md)
* [make-timespan function](../make-timespan-function.md)
5 changes: 5 additions & 0 deletions data-explorer/kusto/query/totimespan-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@ Else, result will be null.
```kusto
totimespan("0.00:01:00") == time(1min)
```

## Related content

* [timespan datatype](scalar-data-types/timespan.md)
* [make-timespan function](make-timespan-function.md)

0 comments on commit 2ed3147

Please sign in to comment.