fp_fantasy_points.Rd
Fantasy points and Ranks
fp_fantasy_points(pos = "overall", season, start_week = 1, end_week = 17, scoring = c("half", "ppr", "std"))
pos |
|
---|---|
season |
|
start_week |
|
end_week |
|
scoring |
|
a tibble
If you query a single week all players that were on a bye that week are not returned
# overall fantasy points for the entire season fp_fantasy_points(season = 2018)#> # A tibble: 669 x 11 #> rank player team season start_week end_week scoring position points games #> <dbl> <chr> <chr> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl> #> 1 1 Patri~ KC 2018 1 17 half QB 417 16 #> 2 2 Matt ~ ATL 2018 1 17 half QB 354. 16 #> 3 3 Todd ~ LAR 2018 1 17 half RB 343. 14 #> 4 4 Ben R~ PIT 2018 1 17 half QB 342. 16 #> 5 5 Saquo~ NYG 2018 1 17 half RB 340. 16 #> 6 6 Chris~ CAR 2018 1 17 half RB 332 16 #> 7 7 Desha~ HOU 2018 1 17 half QB 332. 16 #> 8 8 Andre~ IND 2018 1 17 half QB 328. 16 #> 9 9 Alvin~ NO 2018 1 17 half RB 314. 15 #> 10 10 Aaron~ GB 2018 1 17 half QB 312. 16 #> # ... with 659 more rows, and 1 more variable: avg <dbl># TE's in the 2017 season using standard scoring fp_fantasy_points(pos = "TE", season = 2017, scoring = "std")#> # A tibble: 119 x 10 #> rank player team season start_week end_week scoring points games avg #> <dbl> <chr> <chr> <dbl> <dbl> <dbl> <chr> <dbl> <dbl> <dbl> #> 1 1 Rob Gronko~ FA 2017 1 17 std 158. 13 12.2 #> 2 2 Travis Kel~ KC 2017 1 17 std 150. 15 10 #> 3 3 Zach Ertz PHI 2017 1 17 std 128. 14 9.2 #> 4 4 Jimmy Grah~ GB 2017 1 17 std 114 16 7.1 #> 5 5 Evan Engram NYG 2017 1 17 std 110. 15 7.3 #> 6 6 Kyle Rudol~ MIN 2017 1 17 std 101. 16 6.3 #> 7 7 Delanie Wa~ TEN 2017 1 17 std 100. 16 6.3 #> 8 8 Cameron Br~ TB 2017 1 17 std 95.1 16 5.9 #> 9 9 Jack Doyle IND 2017 1 17 std 89 15 5.9 #> 10 10 Jason Witt~ DAL 2017 1 17 std 84 16 5.3 #> # ... with 109 more rowsfp_fantasy_points(pos = "IDP", season = 2015)#> # A tibble: 915 x 11 #> rank player team season start_week end_week scoring position points games #> <dbl> <chr> <chr> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl> #> 1 1 Resha~ MIA 2015 1 17 half S 279. 16 #> 2 2 Lavon~ TB 2015 1 17 half LB 276. 16 #> 3 3 D'Qwe~ FA 2015 1 17 half LB 266. 16 #> 4 4 J.J. ~ HOU 2015 1 17 half DE 266. 16 #> 5 5 Telvi~ JAC 2015 1 17 half LB 252. 14 #> 6 6 Paul ~ FA 2015 1 17 half LB 249. 14 #> 7 7 Navor~ FA 2015 1 17 half LB 246. 16 #> 8 8 Malco~ SF 2015 1 17 half LB 245. 16 #> 9 9 Khali~ CHI 2015 1 17 half LB 236. 15 #> 10 10 Luke ~ CAR 2015 1 17 half LB 236. 13 #> # ... with 905 more rows, and 1 more variable: avg <dbl>