MLB Sport IDs
Value
Returns a tibble with the following columns
col_name | types |
sport_id | integer |
sport_code | character |
sport_link | character |
sport_name | character |
sport_abbreviation | character |
sort_order | integer |
active_status | logical |
and the following values:
sport_id | sport_code | sport_link | sport_name | sport_abbreviation | sort_order | active_status |
1 | mlb | /api/v1/sports/1 | Major League Baseball | MLB | 11 | TRUE |
11 | aaa | /api/v1/sports/11 | Triple-A | AAA | 101 | TRUE |
12 | aax | /api/v1/sports/12 | Double-A | AA | 201 | TRUE |
13 | afa | /api/v1/sports/13 | High-A | A+ | 301 | TRUE |
14 | afx | /api/v1/sports/14 | Low-A | A | 401 | TRUE |
16 | rok | /api/v1/sports/16 | Rookie | ROK | 701 | TRUE |
17 | win | /api/v1/sports/17 | Winter Leagues | WIN | 1301 | TRUE |
8 | bbl | /api/v1/sports/8 | Organized Baseball | Pros | 1401 | TRUE |
21 | min | /api/v1/sports/21 | Minor League Baseball | Minors | 1402 | TRUE |
23 | ind | /api/v1/sports/23 | Independent Leagues | IND | 2101 | TRUE |
51 | int | /api/v1/sports/51 | International Baseball | INT | 3501 | TRUE |
508 | nat | /api/v1/sports/508 | International Baseball (Collegiate) | INTC | 3502 | TRUE |
509 | nae | /api/v1/sports/509 | International Baseball (18 and under) | 18U | 3503 | TRUE |
510 | nas | /api/v1/sports/510 | International Baseball (16 and under) | 16U | 3505 | TRUE |
22 | bbc | /api/v1/sports/22 | College Baseball | College | 5101 | TRUE |
586 | hsb | /api/v1/sports/586 | High School Baseball | H.S. | 6201 | TRUE |
Examples
# \donttest{
try(mlb_sports())
#> ── MLB Sports data from MLB.com ───────────────────── baseballr 1.2.0 ──
#> ℹ Data updated: 2022-04-30 07:16:35 UTC
#> # A tibble: 16 × 7
#> sport_id sport_code sport_link sport_name sport_abbreviat… sort_order
#> <int> <chr> <chr> <chr> <chr> <int>
#> 1 1 mlb /api/v1/s… Major Lea… MLB 11
#> 2 11 aaa /api/v1/s… Triple-A AAA 101
#> 3 12 aax /api/v1/s… Double-A AA 201
#> 4 13 afa /api/v1/s… High-A A+ 301
#> 5 14 afx /api/v1/s… Single-A A 401
#> 6 16 rok /api/v1/s… Rookie ROK 701
#> 7 17 win /api/v1/s… Winter Le… WIN 1301
#> 8 8 bbl /api/v1/s… Organized… Pros 1401
#> 9 21 min /api/v1/s… Minor Lea… Minors 1402
#> 10 23 ind /api/v1/s… Independe… IND 2101
#> 11 51 int /api/v1/s… Internati… INT 3501
#> 12 508 nat /api/v1/s… Internati… INTC 3502
#> 13 509 nae /api/v1/s… Internati… 18U 3503
#> 14 510 nas /api/v1/s… Internati… 16U 3505
#> 15 22 bbc /api/v1/s… College B… College 5101
#> 16 586 hsb /api/v1/s… High Scho… H.S. 6201
#> # … with 1 more variable: active_status <lgl>
# }