Skip to contents

Get KenPom's team efficiency history

Usage

kp_team_history(team)

Arguments

team

Team filter to select.

Value

A data frame with the following columns:

col_nametypesdescription
yearnumeric4-digit year.
team_rknumericTeam rk.
teamcharacterTeam-side label or team identifier.
coachcharacterCoach.
confcharactercharacter.
adj_tnumericAdj t.
adj_onumericAdj o.
adj_dnumericAdj d.
off_e_fg_pctnumericOff e field goals percentage (0-1 decimal).
off_to_pctnumericOff to percentage (0-1 decimal).
off_or_pctnumericOff or percentage (0-1 decimal).
off_ft_ratenumericOff ft rate.
off_fg_2_pctnumericOff field goals 2 percentage (0-1 decimal).
off_fg_3_pctnumericOff field goals 3 percentage (0-1 decimal).
off_ft_pctnumericOff free throws percentage (0-1 decimal).
off_fg_3a_pctnumericOff field goals 3a percentage (0-1 decimal).
off_a_pctnumericOff a percentage (0-1 decimal).
off_aplnumericOff apl.
def_e_fg_pctnumericDef e field goals percentage (0-1 decimal).
def_to_pctnumericDef to percentage (0-1 decimal).
def_or_pctnumericDef or percentage (0-1 decimal).
def_ft_ratenumericDef ft rate.
def_fg_2_pctnumericDef field goals 2 percentage (0-1 decimal).
def_fg_3_pctnumericDef field goals 3 percentage (0-1 decimal).
def_blk_pctnumericDef blocks percentage (0-1 decimal).
def_fg_3a_pctnumericDef field goals 3a percentage (0-1 decimal).
def_a_pctnumericDef a percentage (0-1 decimal).
def_aplnumericDef apl.
foul2partic_pctnumericFoul2partic 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_team_history(team = 'Florida St.'))
#> # A tibble: 30 × 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> <dbl> <dbl> <dbl>        <dbl>      <dbl>
#>  1  2026      NA Florida … Luke… ACC    70.5  118. 105.          52.3       15.2
#>  2  2025      NA Florida … Leon… ACC    69.7  109. 101.          50.7       17.5
#>  3  2024      NA Florida … Leon… ACC    71.1  111. 101.          50.3       16.4
#>  4  2023      NA Florida … Leon… ACC    68.6  105. 108.          49.3       17.6
#>  5  2022      NA Florida … Leon… ACC    67.8  105.  99.1         49         18.1
#>  6  2021      NA Florida … Leon… ACC    69.9  115.  92.8         54         20.4
#>  7  2020      NA Florida … Leon… ACC    69.9  112.  91.5         51.9       18.9
#>  8  2019      NA Florida … Leon… ACC    68.6  113.  90.4         50.5       18.9
#>  9  2018      NA Florida … Leon… ACC    71.2  114.  96.5         53.2       17.8
#> 10  2017      NA Florida … Leon… ACC    71.3  116.  95.5         53.7       16.4
#> # ℹ 20 more rows
#> # ℹ 47 more variables: off_or_pct <dbl>, off_ft_rate <dbl>, off_fg_2_pct <dbl>,
#> #   off_fg_3_pct <dbl>, off_ft_pct <dbl>, off_fg_3a_pct <dbl>, off_a_pct <dbl>,
#> #   off_apl <dbl>, def_e_fg_pct <dbl>, def_to_pct <dbl>, def_or_pct <dbl>,
#> #   def_ft_rate <dbl>, def_fg_2_pct <dbl>, def_fg_3_pct <dbl>,
#> #   def_blk_pct <dbl>, def_fg_3a_pct <dbl>, def_a_pct <dbl>, def_apl <dbl>,
#> #   foul2partic_pct <dbl>, wl <chr>, wl_conf <chr>, adj_t_rk <dbl>, …
  # }