Baselight

FIFA World Cup 2022 Player Data

Comprehensive player data from the FIFA World Cup 2022

@kaggle.swaptr_fifa_world_cup_2022_player_data

Player Defense
@kaggle.swaptr_fifa_world_cup_2022_player_data.player_defense

  • 38.31 KB
  • 680 rows
  • 22 columns
player

Player

position

Position

team

Team

age

Age

birth_year

Birth Year

minutes_90s

Minutes 90s

tackles

Tackles

tackles_won

Tackles Won

tackles_def_3rd

Tackles Def 3rd

tackles_mid_3rd

Tackles Mid 3rd

tackles_att_3rd

Tackles Att 3rd

dribble_tackles

Dribble Tackles

dribbles_vs

Dribbles Vs

dribble_tackles_pct

Dribble Tackles Pct

dribbled_past

Dribbled Past

blocks

Blocks

blocked_shots

Blocked Shots

blocked_passes

Blocked Passes

interceptions

Interceptions

tackles_interceptions

Tackles Interceptions

clearances

Clearances

errors

Errors

Aaron MooyMFAustralia32-0941990496441687526423129
Aaron RamseyMFWales31-357199032222413221
Abdelhamid SabiriMFMorocco26-0201996231122633.34312583
Abdelkarim HassanDFQatar29-11219933735234751312185
Abderrazak HamdallahFWMorocco32-00119900.8112
Abdessamad EzzalzouliFWMorocco21-0012001132211110041333
Abdou DialloDFSenegal26-22819963.722222100111310
Abdul Fatawu IssahakuFWGhana18-2852004
Abdulaziz HatemMFQatar32-05119902.21111250112
Abdulelah Al-AmriDFSaudi Arabia25-3371997211112114510

CREATE TABLE player_defense (
  "player" VARCHAR,
  "position" VARCHAR,
  "team" VARCHAR,
  "age" VARCHAR,
  "birth_year" BIGINT,
  "minutes_90s" DOUBLE,
  "tackles" DOUBLE,
  "tackles_won" BIGINT,
  "tackles_def_3rd" DOUBLE,
  "tackles_mid_3rd" DOUBLE,
  "tackles_att_3rd" DOUBLE,
  "dribble_tackles" DOUBLE,
  "dribbles_vs" DOUBLE,
  "dribble_tackles_pct" DOUBLE,
  "dribbled_past" DOUBLE,
  "blocks" DOUBLE,
  "blocked_shots" DOUBLE,
  "blocked_passes" DOUBLE,
  "interceptions" BIGINT,
  "tackles_interceptions" DOUBLE,
  "clearances" DOUBLE,
  "errors" DOUBLE
);

Share link

Anyone who has the link will be able to view this.