R/myData.R

#' myData
#' 
#' A dataset of pokemoon typing, stats, and abilities for generations 1 to 7. 
#' 
#' @format A dataframe with 801 rows and 16 variables
#' \describe(
#'   \item(name) (The pokemon's name)
#'   \item(pokedex_number) (The pokemon's pokedex number)
#'   \item(generation) (Which generation of games the pokemon comes from)
#'   \item(type1) (The pokemon's primary elemental type)
#'   \item(type2) (The pokemon's secondary elemental type)
#'   \item(abilities) (The pokemon's possible special abilities)
#'   \item(base_total) (The total of the pokemon's base stats)
#'   \item(hp) (The pokemon's base stat for hit points)
#'   \item(attack) (The pokemon's base stat for attack)
#'   \item(defense) (The pokemon's base stat for defense)
#'   \item(sp_attack) (The pokemon's base stat for special attack)
#'   \item(sp_defense) (The pokemon's base stat for special defense)
#'   \item(speed) (The pokemon's base stat for speed)
#'   \item(height_m) (The pokemon's height in meters)
#'   \item(weight_kg) (The pokmeon's weight in kilograms)
#'   \item(is_legendary) (Is 1 for legendary pokemon and 0 for nonlegendaries)
#' @source \url(https://www.kaggle.com/rounakbanik/pokemon)

"myData"
alexMoore190/myLinearPackage documentation built on Dec. 31, 2020, 7:41 p.m.