We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058cb37 commit 42e644dCopy full SHA for 42e644d
1 file changed
R/source_scrapes.R
@@ -80,6 +80,7 @@ scrape_cbs = function(pos = c("QB", "RB", "WR", "TE", "K", "DST"), season = NULL
80
dst_ids = ff_player_data[ff_player_data$position == "Def", c("id", "team")]
81
dst_ids$team[dst_ids$team == "OAK"] = "LV"
82
out_df$id = dst_ids$id[match(cbs_id, dst_ids$team)]
83
+ out_df$pos = pos
84
out_df$src_id = player_ids$cbs_id[match(out_df$id, player_ids$id)]
85
}
86
0 commit comments