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()
})
#> # A tibble: 557 × 9
#> player fantasypros_id pos team bye ecr sd sportradar_id scrape_date
#> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl> <chr> <date>
#> 1 Jamal… 16375 DB SEA NA 1 0 1a92b0ad-3eb… 2022-03-04
#> 2 Budda… 16733 DB ARI NA 2 0 5ce20f3e-0f0… 2022-03-04
#> 3 Jerem… 19429 DB CAR NA 3 0 5f623fbc-415… 2022-03-04
#> 4 Jorda… 11759 DB BUF NA 4 0 95fab6fa-3ee… 2022-03-04
#> 5 Jessi… 17544 DB CIN NA 5 0 89c84a59-18a… 2022-03-04
#> 6 Derwi… 17310 DB LAC NA 6 0 01c52412-725… 2022-03-04
#> 7 Justi… 15649 DB DEN NA 7 0 2df474e5-711… 2022-03-04
#> 8 Jabri… 16382 DB NYG NA 8 0 45ef2670-238… 2022-03-04
#> 9 John … 16747 DB CLE NA 9 0 8c824157-eb3… 2022-03-04
#> 10 Lando… 13895 DB WAS NA 10 0 a9c41c5b-0dc… 2022-03-04
#> # … with 547 more rows
# }