Skip to contents

Get KenPom's coaching resume data

Usage

kp_coach_history(coach)

Arguments

coach

Coach filter to select.

Value

A data frame with 30 columns:

col_nametypesdescription
yearnumeric4-digit year.
team_rknumericTeam rk.
teamcharacterTeam-side label or team identifier.
coachcharacterCoach.
confcharactercharacter.
adj_tcharacterAdj t.
adj_ocharacterAdj o.
adj_dcharacterAdj d.
off_e_fg_pctcharacterOff e field goals percentage (0-1 decimal).
off_to_pctcharacterOff to percentage (0-1 decimal).
off_or_pctcharacterOff or percentage (0-1 decimal).
off_ft_ratecharacterOff ft rate.
off_fg_2_pctcharacterOff field goals 2 percentage (0-1 decimal).
off_fg_3_pctcharacterOff field goals 3 percentage (0-1 decimal).
off_ft_pctcharacterOff free throws percentage (0-1 decimal).
off_fg_3a_pctcharacterOff field goals 3a percentage (0-1 decimal).
off_a_pctcharacterOff a percentage (0-1 decimal).
off_aplcharacterOff apl.
def_e_fg_pctcharacterDef e field goals percentage (0-1 decimal).
def_to_pctcharacterDef to percentage (0-1 decimal).
def_or_pctcharacterDef or percentage (0-1 decimal).
def_ft_ratecharacterDef ft rate.
def_fg_2_pctcharacterDef field goals 2 percentage (0-1 decimal).
def_fg_3_pctcharacterDef field goals 3 percentage (0-1 decimal).
def_blk_pctcharacterDef blocks percentage (0-1 decimal).
def_fg_3a_pctcharacterDef field goals 3a percentage (0-1 decimal).
def_a_pctcharacterDef a percentage (0-1 decimal).
def_aplcharacterDef apl.
foul2partic_pctcharacterFoul2partic percentage (0-1 decimal).
wlcharacterWl.
wl_confcharacterWl conf.
adj_t_rknumericAdj t rk.
adj_o_rknumericAdj o rk.
adj_d_rknumericAdj d rk.
off_e_fg_pct_rknumericOff e fg pct rk.
off_to_pct_rknumericOff to pct rk.
off_or_pct_rknumericOff or pct rk.
off_ft_rate_rknumericOff ft rate rk.
off_fg_2_pct_rknumericOff fg 2 pct rk.
off_fg_3_pct_rknumericOff fg 3 pct rk.
off_ft_pct_rknumericOff ft pct rk.
off_fg_3a_pct_rknumericOff fg 3a pct rk.
off_a_pct_rknumericOff a pct rk.
off_apl_rknumericOff apl rk.
def_e_fg_pct_rknumericDef e fg pct rk.
def_to_pct_rknumericDef to pct rk.
def_or_pct_rknumericDef or pct rk.
def_ft_rate_rknumericDef ft rate rk.
def_fg_2_pct_rknumericDef fg 2 pct rk.
def_fg_3_pct_rknumericDef fg 3 pct rk.
def_blk_pct_rknumericDef blk pct rk.
def_fg_3a_pct_rknumericDef fg 3a pct rk.
def_a_pct_rknumericDef a pct rk.
def_apl_rknumericDef apl rk.
foul2partic_pct_rknumericFoul2partic pct rk.
team_finishcharacterTeam finish.
ncaa_seednumericNcaa seed.

Examples

  # \donttest{
   try(kp_coach_history(coach = 'Leonard Hamilton'))
#> # A tibble: 27 × 57
#>     year team_rk team      coach conf  adj_t adj_o adj_d off_e_fg_pct off_to_pct
#>    <dbl>   <dbl> <chr>     <chr> <chr> <chr> <chr> <chr> <chr>        <chr>     
#>  1  2025      NA Florida … Leon… ACC   69.7  108.8 100.6 50.7         17.5      
#>  2  2024      NA Florida … Leon… ACC   71.1  110.9 100.6 50.3         16.4      
#>  3  2023      NA Florida … Leon… ACC   68.6  105.4 107.8 49.3         17.6      
#>  4  2022      NA Florida … Leon… ACC   67.8  105.3 99.1  49.0         18.1      
#>  5  2021      NA Florida … Leon… ACC   69.9  114.9 92.8  54.0         20.4      
#>  6  2020      NA Florida … Leon… ACC   69.9  111.7 91.5  51.9         18.9      
#>  7  2019      NA Florida … Leon… ACC   68.6  112.8 90.4  50.5         18.9      
#>  8  2018      NA Florida … Leon… ACC   71.2  114.3 96.5  53.2         17.8      
#>  9  2017      NA Florida … Leon… ACC   71.3  115.5 95.5  53.7         16.4      
#> 10  2016      NA Florida … Leon… ACC   71.6  113.1 98.9  51.8         18.0      
#> # ℹ 17 more rows
#> # ℹ 47 more variables: off_or_pct <chr>, off_ft_rate <chr>, off_fg_2_pct <chr>,
#> #   off_fg_3_pct <chr>, off_ft_pct <chr>, off_fg_3a_pct <chr>, off_a_pct <chr>,
#> #   off_apl <chr>, def_e_fg_pct <chr>, def_to_pct <chr>, def_or_pct <chr>,
#> #   def_ft_rate <chr>, def_fg_2_pct <chr>, def_fg_3_pct <chr>,
#> #   def_blk_pct <chr>, def_fg_3a_pct <chr>, def_a_pct <chr>, def_apl <chr>,
#> #   foul2partic_pct <chr>, wl <chr>, wl_conf <chr>, adj_t_rk <dbl>, …
  # }