Description Usage Arguments Examples
Modelling team strengths often requires separate parameters for offence and defence. These helper functions provide a quick way to turn a factor of team names into a factor of offence or defence levels
1 | factor_teams(data, columns)
|
data |
A data frame containing match data. |
columns |
A charater vector containing the names of columns containing team names. |
1 2 3 4 5 6 7 8 9 10 11 12 | # For a given dataframe of matches...
games <- data.frame(
home = c("Arsenal", "Barcelona", "Arsenal"),
away = c("Chelsea", "Roma", "Barcelona"),
result = c("H", "A", "H"),
stringsAsFactors = FALSE
)
# Convert the teams to factors
games <- factor_teams(games, c("home", "away"))
levels(games$home)
#> c("Arsenal", "Barcelona", "Chelsea", "Roma")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.