Skip to contents

Fetches a copy of the latest DynastyProcess dynasty trade values sheets

Usage

dp_values(file = c("values.csv", "values-players.csv", "values-picks.csv"))

Arguments

file

one of c("values.csv","values-players.csv","values-picks.csv")

Value

a tibble of trade values from DynastyProcess

Examples

# \donttest{
try( # try only shown here because sometimes CRAN checks are weird
  dp_values()
)
#> # A tibble: 692 × 12
#>    player         pos   team    age draft_year ecr_1qb ecr_2qb ecr_pos value_1qb
#>    <chr>          <chr> <chr> <dbl>      <int>   <dbl>   <dbl>   <dbl>     <int>
#>  1 Jonathan Tayl… RB    IND    23.4       2020     1.7     3.9     1       10089
#>  2 Ja'Marr Chase  WR    CIN    22.3       2021     3       6.4     1.5      9785
#>  3 Justin Jeffer… WR    MIN    23         2020     3.3     6.7     1.5      9716
#>  4 Najee Harris   RB    PIT    24.3       2021     4.3     8.8     2.5      9491
#>  5 D'Andre Swift  RB    DET    23.4       2020     6.2    11.5     3.9      9076
#>  6 Javonte Willi… RB    DEN    22.1       2021     8.2    13.4     4.7      8660
#>  7 CeeDee Lamb    WR    DAL    23.2       2020     8.7    14       3.9      8559
#>  8 Christian McC… RB    CAR    26         2017     9.4    15.4     4.1      8419
#>  9 Cooper Kupp    WR    LAR    29         2017     9.8    15.8     4.3      8340
#> 10 Kyle Pitts     TE    ATL    21.7       2021    10.6    17.1     1.2      8185
#> # … with 682 more rows, and 3 more variables: value_2qb <int>,
#> #   scrape_date <chr>, fp_id <chr>
# }