You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Provides rank functions for integer and numeric with less overhead as base R `rank`, as alternatives to calling `.Internal(rank(...))` which is forbidden within packages. In avoiding the overhead, fastrank functions impose constraints on the user. The R wrapper `fastrank` does a bit of type checking and type-specific dispatch, while the C functions `fastrank_int` and `fastrank_num` are available for integer and numeric vectors, respectively, via `.Call`, and do no error checking.