-
Notifications
You must be signed in to change notification settings - Fork 81
/
awards.R
32 lines (29 loc) · 1.39 KB
/
awards.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
################################################################################
# Joshua C. Fjelstul, Ph.D.
# worldcup R package
# automatically generated by the codebookr R package
################################################################################
#' Awards
#'
#' This dataset records all individual awards that are handed out to players.
#' There is one observation per award. It includes the name of the award, the
#' year the award was first introduced, and a description of the award. There
#' are 5 variables and 8 observations.
#'
#' @format A data frame with 5 variables:
#' \describe{
#' \item{key_id}{\code{integer}. The unique ID number for the observation.}
#' \item{award_id}{\code{text}. The unique ID number for the award. Has the
#' format \code{A-#}, where the number is a counter.}
#' \item{award_name}{\code{enum}. The name of the award. The possible values
#' are: \code{Golden Ball}, \code{Silver Ball}, \code{Bronze Ball},
#' \code{Golden Boot}, \code{Silver Boot}, \code{Bronze Boot}, \code{Golden
#' Glove}, \code{Best Young Player}.}
#' \item{award_description}{\code{text}. A description of the award.}
#' \item{year_introduced}{\code{integer}. The year the award was first
#' introduced.}
#' }
"awards"
################################################################################
# end R script
################################################################################