Query Baseball Savant Leaderboards — statcast_leaderboards (2024)

Query Baseball Savant Leaderboards — statcast_leaderboards (1)

Source: R/sc_statcast_leaderboards.R

statcast_leaderboards.Rd

This function allows you to read leaderboard data from BaseballSavant directly into R as data frame.

Usage

statcast_leaderboards( leaderboard = "exit_velocity_barrels", year = 2020, abs = 50, min_pa = "q", min_pitches = 100, min_throws = 100, min_field = "q", min_run = 0, player_type = "batter", fielding_type = "player", oaa_position = "", oaa_roles = "", team = "", arsenal_type = "n_", run_type = "raw", min2b = 5, min3b = 0, position = "", bats = "", hand = "")

Arguments

leaderboard

The type of leaderboard to retrieve, input as a string. Currentoptions include exit_velocity_barrels, expected_statistics, pitch_arsenal,outs_above_average, directional_oaa, catch_probability, pop_time, sprint_speed, andrunning_splits_90_ft, arm_strength.

year

The season for which you want data.

abs

The minimum number of batted balls. Applies only to exit_velocity_barrelsleaderboards.

min_pa

Minimum number of plate appearances. Can be a number or 'q' for qualified batters.

min_pitches

Minimum number of pitches thrown.

min_throws

Minimum number of throwing opportunities.

min_field

Minimum number of fieding opportunities.

min_run

Minimum number of running opportunities.

player_type

One of either 'batter' or pitcher. For the expected_statisticsleaderboard, 'batter-team' and 'pitcher-team' are also available.

fielding_type

One of either 'player' or 'team'.

oaa_position

Can be either the number position of a player or 'if' or 'of' forposition categories.

oaa_roles

Can be either the number position of a player or 'if' or 'of' forposition categories.

team

An abbreviation for a team. Can be left blank.

arsenal_type

One of either 'n_', 'avg_spin', or 'avg_speed'.

run_type

One of either 'percent' or 'raw'.

min2b

The minimum number of throwing attempts to second base.

min3b

The minimum number of throwing attempts to third base.

position

The numeric position of the player. For DH use 10. Can be left blank.

bats

The handedness of the batter. One of 'R' or 'L'. Can be left blank.

hand

The handedness of the pitcher. One of 'R' or 'L'. Can be left blank.

Value

Returns a tibble of Statcast leaderboard data with the following columns (for leaderboard: 'exit_velocity_barrels'):

col_nametypes
yearnumeric
last_namecharacter
first_namecharacter
player_idinteger
attemptsinteger
avg_hit_anglenumeric
anglesweetspotpercentnumeric
max_hit_speednumeric
avg_hit_speednumeric
fbldnumeric
gbnumeric
max_distanceinteger
avg_distanceinteger
avg_hr_distanceinteger
ev95plusinteger
ev95per-swingnumeric
ev95percentnumeric
barrelsinteger
brl_percentnumeric
brl_panumeric

Details

oaa_roles argument:30 = 1B - Straight Up31 = 1B - Towards 1B/2B Hole32 = 1B - Close to Line40 = 2B - Straight Up41 = 2B - Shaded Towards 2B Bag42 = 2B - Towards 1B/2B Hole43 = 2B - Behind First Basem*n46 = 2B - Up the Middle60 = SS - Straight Up61 = SS - Towards 3B/SS Hole62 = SS - Shaded Towards 2B Bag64 = SS - Up the Middle50 = 3B - Straight Up51 = 3B - Close to Line52 = 3B - Towards 3B/SS Hole77 = LF - Close to Line71 = LF - Leaning Left70 = LF - Straight Up72 = LF - Leaning Right78 = LF - LF Gap87 = CF - LF Gap81 = CF - Leaning Left82 = CF - Leaning Right89 = CF - RF Gap98 = RF - RF Gap91 = RF - Leaning Left90 = RF - Straight Up92 = RF - Leaning Right99 = RF - Close to Line

Examples

# \donttest{ try(statcast_leaderboards(leaderboard = "expected_statistics", year = 2018))#> ── MLB Baseball Savant Statcast Leaderboards data from baseballsavant.ml#>  Data updated: 2024-04-13 21:57:25 UTC#> # A tibble: 249 × 14#> year `last_name, first_name` player_id pa bip ba est_ba#> <int> <chr> <int> <int> <int> <dbl> <dbl>#>  1 2018 Lindor, Francisco 596019 745 560 0.277 0.289#>  2 2018 Turner, Trea 607208 740 534 0.271 0.273#>  3 2018 Machado, Manny 592518 709 533 0.297 0.288#>  4 2018 Hernández, César 514917 708 454 0.253 0.242#>  5 2018 Freeman, Freddie 518692 707 492 0.309 0.298#>  6 2018 Merrifield, Whit 593160 707 526 0.304 0.281#>  7 2018 Markakis, Nick 455976 705 552 0.297 0.293#>  8 2018 Stanton, Giancarlo 519317 705 416 0.266 0.241#>  9 2018 Bregman, Alex 608324 705 512 0.286 0.267#> 10 2018 Semien, Marcus 543760 703 510 0.255 0.245#> # ℹ 239 more rows#> # ℹ 7 more variables: est_ba_minus_ba_diff <dbl>, slg <dbl>,#> # est_slg <dbl>, est_slg_minus_slg_diff <dbl>, woba <dbl>,#> # est_woba <dbl>, est_woba_minus_woba_diff <dbl> try(statcast_leaderboards(leaderboard = "arm_strength", year = 2020))#> ── MLB Baseball Savant Statcast Leaderboards data from baseballsavant.ml#>  Data updated: 2024-04-13 21:57:25 UTC#> # A tibble: 183 × 27#> year fielder_name player_id team_name primary_position#> <dbl> <chr> <int> <lgl> <int>#>  1 2020 Freddie Freeman 518692 NA 3#>  2 2020 Max Muncy 571970 NA 3#>  3 2020 Carlos Santana 467793 NA 3#>  4 2020 Hunter Dozier 641531 NA 3#>  5 2020 Matt Olson 621566 NA 3#>  6 2020 Ketel Marte 606466 NA 4#>  7 2020 Scott Kingery 664068 NA 4#>  8 2020 Jazz Chisholm Jr. 665862 NA 4#>  9 2020 DJ LeMahieu 518934 NA 4#> 10 2020 Cavan Biggio 624415 NA 4#> # ℹ 173 more rows#> # ℹ 22 more variables: primary_position_name <chr>, total_throws <int>,#> # total_throws_1b <int>, total_throws_2b <int>,#> # total_throws_3b <int>, total_throws_ss <int>,#> # total_throws_lf <int>, total_throws_cf <int>,#> # total_throws_rf <int>, total_throws_inf <int>,#> # total_throws_of <int>, max_arm_strength <dbl>, arm_1b <dbl>, …# }
Query Baseball Savant Leaderboards — statcast_leaderboards (2024)

References

Top Articles
Camping am Nordseestrand | PiNCAMP by ADAC
Camping De Wildhoeve | PiNCAMP by ADAC
$4,500,000 - 645 Matanzas CT, Fort Myers Beach, FL, 33931, William Raveis Real Estate, Mortgage, and Insurance
Mchoul Funeral Home Of Fishkill Inc. Services
Riverrun Rv Park Middletown Photos
Cash4Life Maryland Winning Numbers
What to Serve with Lasagna (80+ side dishes and wine pairings)
Horoscopes and Astrology by Yasmin Boland - Yahoo Lifestyle
Top 10: Die besten italienischen Restaurants in Wien - Falstaff
Poe Pohx Profile
Samsung 9C8
CSC error CS0006: Metadata file 'SonarAnalyzer.dll' could not be found
Mlifeinsider Okta
Iron Drop Cafe
Nj Scratch Off Remaining Prizes
Pro Groom Prices – The Pet Centre
Craigslist Pets Longview Tx
Craiglist Galveston
9044906381
979-200-6466
Does Breckie Hill Have An Only Fans – Repeat Replay
Puretalkusa.com/Amac
Dumb Money, la recensione: Paul Dano e quel film biografico sul caso GameStop
Walgreens San Pedro And Hildebrand
Kp Nurse Scholars
G Switch Unblocked Tyrone
Keurig Refillable Pods Walmart
VERHUURD: Barentszstraat 12 in 'S-Gravenhage 2518 XG: Woonhuis.
Craigslist Lakeville Ma
Craigslist Personals Jonesboro
European city that's best to visit from the UK by train has amazing beer
Aspenx2 Newburyport
Suspiciouswetspot
Where to eat: the 50 best restaurants in Freiburg im Breisgau
Emiri's Adventures
47 Orchid Varieties: Different Types of Orchids (With Pictures)
Petsmart Distribution Center Jobs
Manatee County Recorder Of Deeds
Kornerstone Funeral Tulia
Infinite Campus Parent Portal Hall County
2023 Nickstory
Firestone Batteries Prices
Mcalister's Deli Warrington Reviews
Petra Gorski Obituary (2024)
Oakley Rae (Social Media Star) – Bio, Net Worth, Career, Age, Height, And More
Aurora Southeast Recreation Center And Fieldhouse Reviews
DL381 Delta Air Lines Estado de vuelo Hoy y Historial 2024 | Trip.com
Black Adam Showtimes Near Kerasotes Showplace 14
Craigslist Com Brooklyn
Okta Hendrick Login
Tyrone Dave Chappelle Show Gif
Southern Blotting: Principle, Steps, Applications | Microbe Online
Latest Posts
Article information

Author: Jonah Leffler

Last Updated:

Views: 5609

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Jonah Leffler

Birthday: 1997-10-27

Address: 8987 Kieth Ports, Luettgenland, CT 54657-9808

Phone: +2611128251586

Job: Mining Supervisor

Hobby: Worldbuilding, Electronics, Amateur radio, Skiing, Cycling, Jogging, Taxidermy

Introduction: My name is Jonah Leffler, I am a determined, faithful, outstanding, inexpensive, cheerful, determined, smiling person who loves writing and wants to share my knowledge and understanding with you.