Skip to contents

MLB Stat High/Low Types

Usage

mlb_high_low_types()

Value

Returns a tibble with the following columns

col_nametypes
stat_namecharacter
stat_lookup_paramcharacter
is_countinglogical
stat_labelcharacter
stat_groupslist
org_typeslist
high_low_typeslist

Examples

# \donttest{
  try(mlb_high_low_types())
#> ── MLB High Low Types data from MLB.com ───────────── baseballr 1.6.0 ──
#>  Data updated: 2024-04-13 21:56:27 UTC
#> # A tibble: 43 × 7
#>    stat_name        stat_lookup_param is_counting stat_label stat_groups
#>    <chr>            <chr>             <lgl>       <chr>      <list<chr>>
#>  1 at_bats          atBats            TRUE        At bats            [2]
#>  2 total_plate_app… plateAppearances  TRUE        Total pla…         [1]
#>  3 runs             runs              TRUE        Runs               [1]
#>  4 runs_batted_in   rbi               TRUE        Runs batt…         [1]
#>  5 home_team_runs   runs              TRUE        Home team…         [1]
#>  6 away_team_runs   runs              TRUE        Away team…         [1]
#>  7 hits             hits              TRUE        Hits               [1]
#>  8 hits_risp        hitsRisp          TRUE        Hits risp          [1]
#>  9 home_team_hits   hits              TRUE        Home team…         [1]
#> 10 away_team_hits   hits              TRUE        Away team…         [1]
#> # ℹ 33 more rows
#> # ℹ 2 more variables: org_types <list>, high_low_types <list>
# }