Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.34 KB | None | 0 0
  1. all_picks_df <-
  2.     list.files('../data/picks', '*.csv') %>%
  3.     map_dfr(
  4.         ~read_csv(
  5.             paste0('../data/picks/', .x),
  6.             col_types = cols(
  7.                 .default = col_double(),
  8.                 radiant_win = col_logical()
  9.             )
  10.         )
  11.     )
  12.  
  13. binned_win_rate <- calc_binned_win_rate(all_picks_df)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement