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.6.0 ──
#>  Data updated: 2024-04-13 21:56:37 UTC
#> # A tibble: 24 × 2
#>    pitch_type_code pitch_type_description
#>    <chr>           <chr>                 
#>  1 FA              Fastball              
#>  2 FF              Four-seam FB          
#>  3 FT              Two-seam FB           
#>  4 FC              Cutter                
#>  5 FS              Splitter              
#>  6 FO              Forkball              
#>  7 SI              Sinker                
#>  8 ST              Sweeper               
#>  9 SL              Slider                
#> 10 CU              Curveball             
#> # ℹ 14 more rows
# }