Skip to contents

Builds a % Quantile p: <p> query fragment. The p parameter must be provided by name (positional first argument is type).

Usage

Quantile(type = NULL, ...)

Arguments

type

Optional output type (character scalar) or a piped DafrQuery.

...

Named parameter p (quantile in 0..1); or a piped DafrQuery.

Value

A DafrQuery.

See also

Examples

Quantile(p = 0.5)
#> <DafrQuery> >> Quantile p: "0.5" 
Quantile(p = 0.9, type = "Float64")
#> <DafrQuery> >> Quantile type: Float64 p: "0.9"