Skip to contents

MLB Pitch Types

Usage

mlb_pitch_types()

Value

Returns a tibble with the following columns

col_nametypes
pitch_type_codecharacter
pitch_type_descriptioncharacter

Examples

# \donttest{
  try(mlb_pitch_types())
#> ── MLB Pitch Types data from MLB.com ──────────────── baseballr 1.2.0 ──
#>  Data updated: 2022-04-30 07:16:23 UTC
#> # A tibble: 24 × 2
#>    pitch_type_code pitch_type_description
#>    <chr>           <chr>                 
#>  1 EP              Eephus Pitch          
#>  2 PO              Pitchout              
#>  3 AB              Automatic Ball        
#>  4 AS              Automatic Strike      
#>  5 CH              Changeup              
#>  6 CU              Curveball             
#>  7 FA              Fastball              
#>  8 FT              Two-seam FB           
#>  9 FF              Four-seam FB          
#> 10 FC              Cutter                
#> # … with 14 more rows
# }