Returns player rankings for major recruiting services
Usage
player_recruiting_rankings(
year = NULL,
stars = NULL,
state = NULL,
conf = NULL,
team = NULL,
top = NULL,
pos = NULL
)
Arguments
- year
Freshman season for class (class year + 1)
- stars
247Sports Composite stars
- state
State abbreviation of recruit; `domestic` or `international` also taken
- conf
Conference of school committed to
- team
Team player committed to
- top
Top x in 247Sports Composite national rankings
- pos
247Sports player position to filter for
Value
Returns a tibble with 31 columns:
position
character.
player
character.
height
character.
weight
double.
team
character.
conf
character.
high_school
character.
town
character.
state
character.
tfs_comp_rating
double.
tfs_comp_star
integer.
tfs_comp_national
double.
tfs_comp_position
double.
tfs_comp_state
double.
tfs_rating
double.
tfs_star
integer.
espn_rating
double.
espn_grade
double.
espn_rank
double.
rivals_rating
double.
rivals_rank
double.
avg_rank
logical.
num_offers
integer,
announce_date
character.
tfs_cb
character.
tfs_cb_odds
double.
tfs_cb_alt
character.
tfs_cb_alt_odds
double.
tfs_pid
integer.
year
integer.
id
integer.
Details
Function pulls high school meta data and recruiting rankings for individual players from 247Sports, ESPN, and Rivals back to 2008
Examples
player_recruiting_rankings(year=2019, stars=5, state='domestic')
#> ── Recruiting Rankings ───────────────────────────────────────── toRvik 1.1.0 ──
#> ℹ Data updated: 2022-09-20 01:39:27 UTC
#> # A tibble: 27 × 31
#> position player height weight team conf high_…¹ town state tfs_c…² tfs_c…³
#> <chr> <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <dbl> <int>
#> 1 SG RJ Ba… 6-7 202 Duke ACC Montve… Mont… Flor… 100. 5
#> 2 SF Cam R… 6-8 218 Duke ACC Westto… Norr… Penn… 99.9 5
#> 3 SF Nassi… 6-6 220 Nort… ACC Orland… Orla… Flor… 99.9 5
#> 4 C Bol B… 7-3 208 Oreg… P12 Findla… Hend… Neva… 99.9 5
#> 5 PF Zion … 6-7 285 Duke ACC Sparta… Spar… Sout… 99.9 5
#> 6 C Charl… 6-11 245 West… CUSA St Ant… Loui… Kent… 99.8 5
#> 7 SG Romeo… 6-6 215 Indi… B10 New Al… New … Indi… 99.8 5
#> 8 PF EJ Mo… 6-10 225 Kent… SEC Wheeler Mari… Geor… 99.7 5
#> 9 CG Quent… 6-5 210 Kans… B12 Colleg… The … Texas 99.7 5
#> 10 PF Simi … 6-10 240 Vand… SEC Vermon… Saxt… Verm… 99.6 5
#> # … with 17 more rows, 20 more variables: tfs_comp_national <dbl>,
#> # tfs_comp_position <dbl>, tfs_comp_state <dbl>, tfs_rating <dbl>,
#> # tfs_star <int>, espn_rating <dbl>, espn_grade <dbl>, espn_rank <dbl>,
#> # rivals_rating <dbl>, rivals_rank <dbl>, avg_rank <lgl>, num_offers <int>,
#> # announce_date <chr>, tfs_cb <chr>, tfs_cb_odds <dbl>, tfs_cb_alt <chr>,
#> # tfs_cb_alt_odds <dbl>, tfs_pid <int>, year <int>, id <int>, and abbreviated
#> # variable names ¹high_school, ²tfs_comp_rating, ³tfs_comp_star