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-08-25 13:27:51 UTC
#> # A tibble: 1,051 × 9
#> player fantasypros_id pos team bye ecr sd sportradar_id scrape_date
#> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl> <chr> <date>
#> 1 Derwi… 17310 DB LAC 5 1.08 0.28 01c52412-725… 2023-08-25
#> 2 Jalen… 23721 DB HOU 7 1.92 0.28 7ec32a97-e67… 2023-08-25
#> 3 Budda… 16733 DB ARI 14 3.67 1.03 5ce20f3e-0f0… 2023-08-25
#> 4 Minka… 17278 DB PIT 6 5 0.82 1aede0b9-557… 2023-08-25
#> 5 Jaqua… 23719 DB CHI 13 6.25 4.71 965096f8-96e… 2023-08-25
#> 6 Antoi… 19266 DB TBB 5 7.42 1.75 27732f2b-200… 2023-08-25
#> 7 Kyle … 19337 DB NEP 11 7.75 1.36 1d8d5c04-15e… 2023-08-25
#> 8 Kyle … 23494 DB BAL 13 7.92 2.25 c4172123-905… 2023-08-25
#> 9 Talan… 22817 DB SFO 9 10.5 3.07 a1a2f797-77a… 2023-08-25
#> 10 Harri… 11260 DB MIN 13 11.8 1.88 407f1923-665… 2023-08-25
#> # ℹ 1,041 more rows
# }