percent_rank {SparkR}R Documentation

percent_rank

Description

Window function: returns the relative rank (i.e. percentile) of rows within a window partition.

Usage

percent_rank(x)

## S4 method for signature 'missing'
percent_rank()

Details

This is computed by:

(rank of row in its partition - 1) / (number of rows in the partition - 1)

This is equivalent to the PERCENT_RANK function in SQL.

See Also

Other window_funcs: cume_dist, dense_rank, lag, lead, ntile, rank, row_number

Examples

## Not run: percent_rank()

[Package SparkR version 2.0.0 Index]