rank {SparkR} | R Documentation |
Window function: returns the rank of rows within a window partition.
rank(x, ...) ## S4 method for signature 'missing' rank()
The difference between rank and denseRank is that denseRank leaves no gaps in ranking sequence when there are ties. That is, if you were ranking a competition using denseRank and had three people tie for second place, you would say that all three were in second place and that the next person came in third.
This is equivalent to the RANK function in SQL.
Other window_funcs: cume_dist
,
dense_rank
, lag
,
lead
, ntile
,
percent_rank
, row_number
## Not run: rank()