-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdate.R
50 lines (44 loc) · 1.66 KB
/
update.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
library(wncaahoopR)
library(readr)
#n <- nrow(ids)
#for(i in 1:n) {
# cat("Scraping Data for Team", i, "of", n, paste0("(", ids$team[i], ")"), "\n")
# schedule <- get_schedule(ids$team[i])
# roster <- get_roster(ids$team[i])
# write_csv(roster, paste0("2019-20/rosters/", gsub(" ", "_", ids$team[i]), "_roster.csv"))
# write_csv(schedule, paste0("2019-20/schedules/", gsub(" ", "_", ids$team[i]), "_schedule.csv"))
#}
### Pull Games
date <- as.Date("2020-01-13")
while(date <= Sys.Date()) {
schedule <- w_get_master_schedule(date)
if(!is.null(schedule)) {
if(!dir.exists(paste("2019-20/pbp_logs", date, sep = "/"))) {
dir.create(paste("2019-20/pbp_logs", date, sep = "/"))
}
write_csv(schedule, paste("2019-20/pbp_logs", date, "schedule.csv", sep = "/"))
n <- nrow(schedule)
for(i in 1:n) {
print(paste("Getting Game", i, "of", n, "on", date))
# x <- try(w_get_pbp_game(schedule$game_id[i]))
x <- try(w_get_pbp_game(schedule$game_id[i]))
if(is.data.frame(x)) {
write_csv(x, paste("2019-20/pbp_logs", date, paste0(schedule$game_id[i], ".csv"), sep = "/"))
}
}
}
date <- date + 1
}
### Update Master Schedule
date <- as.Date("2020-01-13")
master_schedule <- NULL
while(date <= Sys.Date()) {
schedule <- try(read_csv(paste("2019-20/pbp_logs", date, "schedule.csv", sep = "/")) %>%
mutate("date" = date))
if(class(schedule)[1] != "try-error") {
write_csv(schedule, paste("2019-20/pbp_logs", date, "schedule.csv", sep = "/"))
master_schedule <- bind_rows(master_schedule, schedule)
}
date <- date + 1
}
write_csv(master_schedule, "2019-20/pbp_logs/master_schedule.csv")