Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data-explorer/kusto/query/percentile-tdigest-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ Calculates the percentile result from the `tdigest` results (which was generated

## Syntax

`percentile_tdigest(`*expr*`,` *percentile1* `,` *typeLiteral*`)`
`percentile_tdigest(`*expr*`,` *percentile* [`,` *typeLiteral*]`)`

[!INCLUDE [syntax-conventions-note](../includes/syntax-conventions-note.md)]

## Parameters

|Name|Type|Required|Description|
|--|--|--|--|
|*expr*| `string` | :heavy_check_mark:|An expression that was generated by [`tdigest`](tdigest-aggregation-function.md) or [tdigest_merge()](tdigest-merge-aggregation-function.md).|
|*expr*| `dynamic` | :heavy_check_mark:|An expression that was generated by [`tdigest`](tdigest-aggregation-function.md) or [tdigest_merge()](tdigest-merge-aggregation-function.md).|
|*percentile*| `real` | :heavy_check_mark:|The value that specifies the percentile.|
|*typeLiteral*| `string` ||A type literal. If provided, the result set will be of this type. For example, `typeof(long)` will cast all results to type `long`.

Expand Down