-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add dribbled past duel type #282
base: master
Are you sure you want to change the base?
Add dribbled past duel type #282
Conversation
I think the checks failed due to a network issue. @JanVanHaaren @koenvo could you re-run the checks? |
@DriesDeprest Done! |
@probberechts Would you mind having a quick look at this pull request? |
Would it be possible to add the Intuitively, there should be a |
In StatsBomb's event data, the Dribbled Past event is typically paired with a completed Dribble event but can also be paired with an incompleted Dribble event. For example, the data for one of our recent games includes one Dribbled Past event that is paired with an incompleted Dribble event. The {
"id": "dd23312c-596e-4f63-b5a0-b75967299e9d",
"type": {
"id": 14,
"name": "Dribble"
},
"related_events": [
"17d2402c-0685-4dba-9e7b-dbeb055d02e8"
],
"dribble": {
"overrun": true,
"outcome": {
"id": 9,
"name": "Incomplete"
}
}
}
{
"id": "17d2402c-0685-4dba-9e7b-dbeb055d02e8",
"type": {
"id": 39,
"name": "Dribbled Past"
},
"related_events": [
"dd23312c-596e-4f63-b5a0-b75967299e9d"
]
} |
Will do this!
How would you implement this? |
count(type = DRIBBLED_PAST) == count(type = DRIBBLE & outcome = SUCCESS) |
@DriesDeprest any update on this one? |
Not really, I've had other priorities. I'll let you know if it changes. |
PR related to #257.
We introduced A
DRIBBLED_PAST
DuelType
and added theTACKLE
qualifier to duels for Opta & StatsBomb.