You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The other function like clean_pbp() or add_qb_epa() run checks for nrow(pbp) == 0. This appears to be missing in xpass which can result in behavior like this
-- Update nflfastR Play-by-Play Database ------------- nflfastR version 4.3.0 --
* 19:48:48 | Checking for missing completed games...
i 19:48:59 | You have 5943 games and are missing 1.
* 19:48:59 | Start download of 1 game...
The following warning has occured:
i 19:48:59 | Nothing to clean. Return passed data frame.
v 19:48:59 | Cleaning completed
i 19:48:59 | Nothing to do. Return passed data frame.
v 19:48:59 | added qb_epa
i 19:48:59 | Nothing to do. Return passed data frame.
Error in format_error_bullets(x[-1]) :
nms %in% c("i", "x", "") are not all TRUE```
The text was updated successfully, but these errors were encountered:
data.frame() |>nflfastR::add_xyac()
#> ℹ 12:15:50 | Nothing to do. Return passed data frame.#> data frame with 0 columns and 0 rowsdata.frame() |>nflfastR::add_xpass()
#> Error in format_error_bullets(x[-1]): nms %in% c("i", "x", "") are not all TRUE
The other function like
clean_pbp()
oradd_qb_epa()
run checks fornrow(pbp) == 0
. This appears to be missing in xpass which can result in behavior like thisThe text was updated successfully, but these errors were encountered: