Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Keisuke ANDO
socceR
Commits
97256ee1
Commit
97256ee1
authored
Sep 23, 2022
by
Takumi Amano
💬
Browse files
[fix]get_action_Allplayerの追加
parent
de8a994f
Changes
1
Hide whitespace changes
Inline
Side-by-side
R/make_data.R
View file @
97256ee1
...
...
@@ -91,6 +91,14 @@ get_kick <- function(action) {
return
(
output
)
}
get_action_Allplayer
<-
function
(
players
,
action
){
players
<-
players
%>%
dplyr
::
select
(
-
c
(
"px"
,
"py"
))
output
<-
players
%>%
dplyr
::
inner_join
(
action
,
by
=
"step"
)
return
(
output
)
}
get_pass
<-
function
(
kick
)
{
output
<-
kick
%>%
dplyr
::
mutate
(
pass_scc
=
(
a_sameteam
&
!
a_sameunum
))
%>%
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment