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 Justin Jeffer… WR    MIN    24.2       2020     1.5     4.4     1.1     10136
#>  2 Ja'Marr Chase  WR    CIN    23.5       2021     2.5     6.9     1.9      9901
#>  3 Bijan Robinson RB    ATL    21.6       2023     2.8     7.7     1        9831
#>  4 CeeDee Lamb    WR    DAL    24.4       2020     5.9    12.2     3.4      9141
#>  5 Garrett Wilson WR    NYJ    23.1       2022     7.1    14       5        8886
#>  6 A.J. Brown     WR    PHI    26.2       2019     7.9    15.1     4.7      8721
#>  7 Amon-Ra St. B… WR    DET    23.9       2021     9.5    17.5     6.2      8399
#>  8 Breece Hall    RB    NYJ    22.3       2022    10.1    18.1     2.4      8282
#>  9 Christian McC… RB    SF     27.3       2017    10.2    16.9     3.2      8262
#> 10 Jaylen Waddle  WR    MIA    24.8       2021    11      17.9     6.1      8108
#> # ℹ 682 more rows
#> # ℹ 3 more variables: value_2qb <int>, scrape_date <chr>, fp_id <chr>
# }