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
b44313a9
Commit
b44313a9
authored
Feb 19, 2024
by
Masaki Ban
🍜
Browse files
パスの成否の判定条件を変更
parent
3e61c0b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
R/make_data.R
View file @
b44313a9
...
...
@@ -146,7 +146,7 @@ get_kick_log <- function(action,goal) {
dplyr
::
mutate
(
dribble_scc
=
(
(
judge
==
"NULL"
)
&
(
next_judge
==
"NULL"
)
&
a_sameteam
&
a_sameunum
))
%>%
dplyr
::
mutate
(
pass_scc
=
(
(
judge
==
"NULL"
)
&
(
next_judge
==
"NULL"
)
&
a_sameteam
&
!
a_sameunum
))
%>%
a_sameteam
&
!
a_sameunum
))
%>%
dplyr
::
mutate
(
shoot
=
(
shoot_scc
|
abs
(
target_ball_x
)
>
(
soccer_field_length
/
2
)
&
abs
(
target_ball_y
)
<
12
))
%>%
...
...
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