percent_rank {SparkR} | R Documentation |
Window function: returns the relative rank (i.e. percentile) of rows within a window partition.
## S4 method for signature 'missing' percent_rank() percent_rank(x)
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.
Other window_funcs: cume_dist
,
cume_dist
; dense_rank
,
dense_rank
; lag
,
lag
; lead
,
lead
; ntile
,
ntile
; rank
,
rank
; row_number
,
row_number
## Not run: percent_rank()