Skip to contents

Given a soccer dataset, as well as column names, the function will rank the players by their names based on the column selected by the user.

Usage

rankingplayers(df, col_names)

Arguments

df

Dataframe containing players information

col_names

A column name in the dataframe to be used to rank the players

Value

Returns a dataframe of names representing the ranking of the players based on the specified columns

Examples

library(tidyverse)
#> ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
#>  ggplot2 3.4.0       purrr   0.3.4 
#>  tibble  3.1.8       dplyr   1.0.10
#>  tidyr   1.2.0       stringr 1.4.1 
#>  readr   2.1.2       forcats 0.5.2 
#> ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
#>  dplyr::filter() masks stats::filter()
#>  dplyr::lag()    masks stats::lag()
library(dplyr)
 my_data <- data.frame (Name  = c("Flora", "Mary", "Sarah", "Ester", "Sophie", "Maria"),
 second_column = c(1, 4, 3, 5, 1, 6),
 third_column  = c(7, 30, 12, 17, 34,8))