3 ways to rank numbers with tidyverse

In this tutorial, we will learn 3 ways to rank integers in tidyverse. Tidyverse’s dplyr has three integer ranking functions, row_number(), min_rank(), and dense_Rank(), inspired by SQL. And these integer ranking functions differ in how they handle ties. Let us jump into simple examples as given by dplyr and create tibble with a sorted column… Continue reading 3 ways to rank numbers with tidyverse

Exit mobile version