Commit 98b3253b authored by Takumi Amano's avatar Takumi Amano 💬
Browse files

[fix]get_pass_Allplayer

parent 97256ee1
...@@ -92,8 +92,8 @@ get_kick <- function(action) { ...@@ -92,8 +92,8 @@ get_kick <- function(action) {
} }
get_action_Allplayer <- function(players,action){ get_action_Allplayer <- function(players,action){
players <- players %>% action <- action %>%
dplyr::select(-c("px","py")) dplyr::select(c("step","ball_x","ball_y","pass_scc"))
output <- players %>% output <- players %>%
dplyr::inner_join(action,by = "step") dplyr::inner_join(action,by = "step")
return(output) return(output)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment