-
Notifications
You must be signed in to change notification settings - Fork 81
/
managers.R
34 lines (31 loc) · 1.6 KB
/
managers.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
################################################################################
# Joshua C. Fjelstul, Ph.D.
# worldcup R package
# automatically generated by the codebookr R package
################################################################################
#' Managers
#'
#' This dataset records all managers who have participated in a World Cup
#' match. There is one observation per manager. It includes their name, their
#' sex, their home country, and a link to their Wikipedia page, if they have
#' one. There are 7 variables and 475 observations.
#'
#' @format A data frame with 7 variables:
#' \describe{
#' \item{key_id}{\code{integer}. The unique ID number for the observation.}
#' \item{manager_id}{\code{text}. The unique ID number for the manager. Has
#' the format \code{M-####}, where the number is a counter that is assigned
#' with the data sorted by the year of the manager's first appearance, then by
#' the manager's family name, and then by the manager's given name.}
#' \item{family_name}{\code{text}. The family name of the manager.}
#' \item{given_name}{\code{text}. The given name of the manager.}
#' \item{female}{\code{boolean}. Whether the manager is female. Coded \code{1}
#' if the manager is female and \code{0} if the manager is male.}
#' \item{country_name}{\code{text}. The name of the manager's home country.}
#' \item{manager_wikipedia_link}{\code{text}. The Wikipedia link for the
#' manager.}
#' }
"managers"
################################################################################
# end R script
################################################################################