MLB Stat High/Low Types
Value
Returns a tibble with the following columns
col_name | types |
stat_name | character |
stat_lookup_param | character |
is_counting | logical |
stat_label | character |
stat_groups | list |
org_types | list |
high_low_types | list |
Examples
# \donttest{
try(mlb_high_low_types())
#> ── MLB High Low Types data from MLB.com ───────────── baseballr 1.2.0 ──
#> ℹ Data updated: 2022-04-30 07:16:09 UTC
#> # A tibble: 43 × 7
#> stat_name stat_lookup_par… is_counting stat_label stat_groups
#> <chr> <chr> <lgl> <chr> <list<chr>>
#> 1 at_bats atBats TRUE At bats [2]
#> 2 total_plate_appe… 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]
#> # … with 33 more rows, and 2 more variables: org_types <list>,
#> # high_low_types <list>
# }