fp_draft_rankings.Rd
Fantasy Pros Expert Consensus Draft Rankings
fp_draft_rankings(pos = "overall", scoring = c("half", "ppr", "std"))
pos |
|
---|---|
scoring |
|
a tibble
# overall ECR for half point ppr fp_draft_rankings()#> # A tibble: 489 x 14 #> scoring rank tier player team pos pos_rank bye best worst avg #> <chr> <dbl> <dbl> <chr> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 half 1 1 Saquo~ NYG RB 1 11 1 4 1.8 #> 2 half 2 1 Ezeki~ DAL RB 2 8 1 6 2.2 #> 3 half 3 1 Chris~ CAR RB 3 7 1 8 2.8 #> 4 half 4 1 Alvin~ NO RB 4 9 1 9 3.4 #> 5 half 5 1 DeAnd~ HOU WR 1 10 5 15 7.2 #> 6 half 6 1 David~ ARI RB 5 12 3 37 7.7 #> 7 half 7 1 Davan~ GB WR 2 11 4 15 8.2 #> 8 half 8 1 Melvi~ LAC RB 6 12 4 27 9.3 #> 9 half 9 1 Julio~ ATL WR 3 9 5 27 11 #> 10 half 10 1 Le'Ve~ NYJ RB 7 4 5 42 11.8 #> # ... with 479 more rows, and 3 more variables: std_dev <dbl>, adp <dbl>, #> # vs_adp <dbl># TE ECR using standard scoring fp_draft_rankings(pos = "TE", scoring = "std")#> # A tibble: 119 x 14 #> scoring rank tier player team pos pos_rank bye best worst avg #> <chr> <dbl> <dbl> <chr> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 std 1 1 Travi~ KC TE 1 12 1 5 1 #> 2 std 2 1 Georg~ SF TE 2 4 1 5 2.4 #> 3 std 3 1 Zach ~ PHI TE 3 10 2 8 3.5 #> 4 std 4 1 O.J. ~ TB TE 4 7 2 8 3.9 #> 5 std 5 2 Hunte~ LAC TE 5 12 2 11 5.4 #> 6 std 6 2 Evan ~ NYG TE 6 11 3 10 6.1 #> 7 std 7 2 Jared~ NO TE 7 9 3 17 8.1 #> 8 std 8 2 Eric ~ IND TE 8 6 4 15 8.5 #> 9 std 9 2 David~ CLE TE 9 7 5 19 9 #> 10 std 10 3 Vance~ PIT TE 10 7 4 25 10.6 #> # ... with 109 more rows, and 3 more variables: std_dev <dbl>, adp <dbl>, #> # vs_adp <dbl># Individual Defensive Player ECR fp_draft_rankings(pos = "IDP")#> # A tibble: 78 x 12 #> scoring rank tier player team pos pos_rank bye best worst avg #> <chr> <dbl> <dbl> <chr> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 half 1 1 Bobby~ SEA LB 1 11 1 8 3.5 #> 2 half 2 1 J.J. ~ HOU DE 1 10 1 6 3.8 #> 3 half 3 1 Luke ~ CAR LB 2 7 3 7 4.5 #> 4 half 4 1 Deion~ ATL LB 3 9 5 8 6.3 #> 5 half 5 2 Aaron~ LAR DT 1 9 1 13 6.5 #> 6 half 6 2 Joey ~ LAC DE 2 12 2 16 7.5 #> 7 half 7 2 C.J. ~ NYJ LB 4 4 7 11 9 #> 8 half 8 2 Danie~ MIN DE 3 12 9 14 11.5 #> 9 half 9 2 Myles~ CLE DE 4 7 10 16 12 #> 10 half 10 3 Blake~ GB LB 5 11 6 25 14 #> # ... with 68 more rows, and 1 more variable: std_dev <dbl>