Fetches a copy of the latest FantasyPros redraft positional rankings data from DynastyProcess.com's data repository.
Usage
ffs_latest_rankings(type = c("draft", "week"))
Details
If you have any issues with the output of this data, please open an issue in the DynastyProcess data repository.
See also
https://github.com/dynastyprocess/data
vignette("custom")
for example usage
Examples
# \donttest{
try({ # try block to prevent CRAN-related issues
ffs_latest_rankings()
})
#> ── nflverse FP expert rankings ─────────────────────────────────────────────────
#> ℹ Data updated: 2023-02-12 23:04:41 UTC
#> # A tibble: 537 × 9
#> player fanta…¹ pos team bye ecr sd sport…² scrape_d…³
#> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl> <chr> <date>
#> 1 Buffalo Bills 8030 DST BUF 0 2.43 1.76 768c92… 2023-02-10
#> 2 San Francisco 49ers 8270 DST SFO 0 2.57 0.9 f0e724… 2023-02-10
#> 3 Dallas Cowboys 8080 DST DAL 0 4 2.39 e627ee… 2023-02-10
#> 4 Philadelphia Eagles 8230 DST PHI 0 5.14 2.36 386bdb… 2023-02-10
#> 5 Denver Broncos 8090 DST DEN 0 6 1.51 ce92bd… 2023-02-10
#> 6 New England Patriots 8180 DST NEP 0 7 2 973548… 2023-02-10
#> 7 New York Jets 8210 DST NYJ 0 9.86 7.14 5fee86… 2023-02-10
#> 8 Baltimore Ravens 8020 DST BAL 0 9.86 2.1 ebd871… 2023-02-10
#> 9 Tampa Bay Buccaneers 8290 DST TBB 0 10.3 5.28 4254d3… 2023-02-10
#> 10 Los Angeles Rams 8280 DST LAR 0 11.7 3.95 2eff2a… 2023-02-10
#> # … with 527 more rows, and abbreviated variable names ¹fantasypros_id,
#> # ²sportradar_id, ³scrape_date
# }