Goalkeeper Actions Dataset
Dataset of Multivariate analysis of goalkeeper actions in youth football
@kaggle.saurabhshahane_goalkeeper_actions_dataset
Dataset of Multivariate analysis of goalkeeper actions in youth football
@kaggle.saurabhshahane_goalkeeper_actions_dataset
The sample was composed of 902 defensive actions and 896 offensive actions from a convenience sample of 32 matches from the Spanish National Championship of Regional Teams U12. Classification tree analysis was used to analyse which variables were best predictors of technical actions in defense and precision in attack actions of the goalkeepers.
Jara Cortina, Daniel (2018), “Dataset of Multivariate analysis of goalkeeper actions in youth football”, Mendeley Data, V1, doi: 10.17632/hgbc2y73d5.1
CREATE TABLE attack (
"teama" BIGINT,
"teamb" BIGINT,
"tsegment" BIGINT,
"t" VARCHAR,
"goalkeeper" BIGINT,
"scorea" BIGINT,
"scoreb" BIGINT,
"period" BIGINT,
"matchstatus" BIGINT,
"obtainingtheball" BIGINT,
"technicalaction" BIGINT,
"movement" BIGINT,
"lenght" BIGINT,
"orientation" BIGINT,
"precision" BIGINT,
"scoringopportunity" BIGINT
);CREATE TABLE defense (
"teama" BIGINT,
"teamb" BIGINT,
"scorea" BIGINT,
"scoreb" BIGINT,
"matchstatus" BIGINT,
"goalkeeper" BIGINT,
"period" BIGINT,
"tsegment" BIGINT,
"t" VARCHAR,
"typeofattack" BIGINT,
"locationpass" BIGINT,
"bodypartpass" BIGINT,
"playerwhoshoot" BIGINT,
"jump" BIGINT,
"drop" BIGINT,
"movement" BIGINT,
"dive" BIGINT,
"technicalaction" BIGINT,
"zonegkintervention" BIGINT,
"zoneofthgoal" BIGINT,
"fieldzoneshots" BIGINT,
"bodypartshots" BIGINT,
"goal" BIGINT
);Anyone who has the link will be able to view this.