Skip to contents

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"))

Arguments

type

one of "draft" or "week" - controls whether to pull preseason or inseason rankings.

Value

a dataframe with a copy of the latest FP rankings from DynastyProcess's data repository

Details

If you have any issues with the output of this data, please open an issue in the DynastyProcess data repository.

Examples

# \donttest{
try({ # try block to prevent CRAN-related issues
ffs_latest_rankings()
})
#> ── nflverse FP expert rankings ─────────────────────────────────────────────────
#>  Data updated: 2022-08-11 12:59:39 UTC
#> # A tibble: 1,261 × 9
#>    player               fanta…¹ pos   team    bye   ecr    sd sport…² scrape_d…³
#>    <chr>                <chr>   <chr> <chr> <dbl> <dbl> <dbl> <chr>   <date>    
#>  1 Derwin James Jr.     17310   DB    LAC       8  1     0    01c524… 2022-08-05
#>  2 Jamal Adams          16375   DB    SEA      11  3.22  1.13 1a92b0… 2022-08-05
#>  3 Jeremy Chinn         19429   DB    CAR      13  3.78  1.75 5f623f… 2022-08-05
#>  4 Jordan Poyer         11759   DB    BUF       7  5.78  2.39 95fab6… 2022-08-05
#>  5 Budda Baker          16733   DB    ARI      13  5.89  3.9  5ce20f… 2022-08-05
#>  6 Antoine Winfield Jr. 19266   DB    TBB      11  7     3.16 27732f… 2022-08-05
#>  7 Minkah Fitzpatrick   17278   DB    PIT       9  8.89  2.69 1aede0… 2022-08-05
#>  8 Harrison Smith       11260   DB    MIN       7  9     2.91 407f19… 2022-08-05
#>  9 Justin Simmons       15649   DB    DEN       9 12.3   3.09 2df474… 2022-08-05
#> 10 Kevin Byard          15635   DB    TEN       6 12.6   3.02 c90953… 2022-08-05
#> # … with 1,251 more rows, and abbreviated variable names ¹​fantasypros_id,
#> #   ²​sportradar_id, ³​scrape_date
#> # ℹ Use `print(n = ...)` to see more rows
# }