Baselight

Football Players Stats

Comprehensive Football Player Statistics

@kaggle.febinjoy98_football_players_stats

Football Players Stats
@kaggle.febinjoy98_football_players_stats.football_players_stats

  • 12.46 KB
  • 17 rows
  • 16 columns
player_name

Player Name

team

Team

position

Position

age

Age

matches_played

Matches Played

goals

Goals

assists

Assists

yellow_cards

Yellow Cards

red_cards

Red Cards

minutes_played

Minutes Played

pass_accuracy

Pass Accuracy (%)

tackles

Tackles

interceptions

Interceptions

shots_on_target

Shots On Target

fouls_won

Fouls Won

dribbles_completed

Dribbles Completed

Lionel MessiInter MiamiForward362518123225088.552523040
Cristiano RonaldoAl-NassrForward382220821198085.131482025
Kylian MbappéPSGForward243028104270087.263622555
Kevin De BruyneMan CityMidfielder322910165250091.385243520
Virgil van DijkLiverpoolDefender322831625208920105105
Erling HaalandMan CityForward23273552250080.542701530
Luka ModrićReal MadridMidfielder38286122240092107102212
Mohamed SalahLiverpoolForward313022121270087.573554038
PedriBarcelonaMidfielder2131984260090.296152018
Declan RiceArsenalMidfielder2432436256089.715128188

CREATE TABLE football_players_stats (
  "player_name" VARCHAR,
  "team" VARCHAR,
  "position" VARCHAR,
  "age" BIGINT,
  "matches_played" BIGINT,
  "goals" BIGINT,
  "assists" BIGINT,
  "yellow_cards" BIGINT,
  "red_cards" BIGINT,
  "minutes_played" BIGINT,
  "pass_accuracy" DOUBLE,
  "tackles" BIGINT,
  "interceptions" BIGINT,
  "shots_on_target" BIGINT,
  "fouls_won" BIGINT,
  "dribbles_completed" BIGINT
);

Share link

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