Baselight

Premier League Club Stats (All Seasons)

Stats of 20 clubs from 1992/1993 to current season

@kaggle.raman77768_premier_league_club_stats_all_seasons

Clubs
@kaggle.raman77768_premier_league_club_stats_all_seasons.clubs

  • 26.94 KB
  • 20 rows
  • 34 columns
club

Club

matches_played

Matches.played

wins

Wins

losses

Losses

goals

Goals

goals_conceded

Goals.conceded

clean_sheets

Clean.sheets

goals_per_match

Goals.per.match

shots

Shots

shots_on_target

Shots.on.target

shooting_accuracy

Shooting.accuracy

penalties_scored

Penalties.scored

big_chances_created

Big.chances.created

hit_woodwork

Hit.woodwork

passes

Passes

passes_per_match

Passes.per.match

pass_accuracy

Pass.accuracy

crosses

Crosses

cross_accuracy

Cross.accuracy

goals_conceded_per_match

Goals.conceded.per.match

saves

Saves

tackles

Tackles

tackle_success

Tackle.success

blocked_shots

Blocked.shots

interceptions

Interceptions

clearances

Clearances

headed_clearance

Headed.Clearance

aerial_battles_duels_won

Aerial.Battles.Duels.Won

errors_leading_to_goal

Errors.leading.to.goal

own_goals

Own.goals

yellow_cards

Yellow.cards

red_cards

Red.cards

fouls

Fouls

offsides

Offsides

Arsenal1076579223190110614111.778240298536%59740230285840265.6584%1161021%0.998611054272%21348169143665368377261154116329314731236
Aston-Villa963325354115812532751.25018161732%37288111151785157.6274%956024%1.3463866675%12326396146754680298457946143057828960
Bournemouth1905691241330381.27221674634%242296081190427.3278%334322%1.74565285466%621231350252588134214692949860295
Brighton-and-Hove-Albion1142751108168260.95121737030%111212246972412.0477%200524%1.47352192160%31713312710148583991281718686259
Burnley22866109233347581.02240677632%181886179179347.2870%440124%1.52661360268%61129197342373217964271239371019526
Chelsea1076578235183910564291.719114308834%72618205277148257.5784%1191323%0.986341044773%2445678113385508736810673716877813661317
Crystal-Palace4261221984566141071.07310899232%392747595498224.1774%524923%1.44804508570%828398874283955217085717669231524471
Everton1076390380140113673301.37120241734%50530169219548204.0477%1200723%1.277611018974%1910722217572624237422895316419615691150
Leicester-City5361752176907611431.29288998534%323406192718172.9875%470721%1.42647438568%752337958073040181072429769501340403
Liverpool1077561250185910794091.739034306334%69666263278421258.5282%1205222%15841140773%2311681414371508236984924013395913791219

CREATE TABLE clubs (
  "club" VARCHAR,
  "matches_played" BIGINT,
  "wins" BIGINT,
  "losses" BIGINT,
  "goals" BIGINT,
  "goals_conceded" BIGINT,
  "clean_sheets" BIGINT,
  "goals_per_match" DOUBLE,
  "shots" BIGINT,
  "shots_on_target" BIGINT,
  "shooting_accuracy" VARCHAR,
  "penalties_scored" BIGINT,
  "big_chances_created" BIGINT,
  "hit_woodwork" BIGINT,
  "passes" BIGINT,
  "passes_per_match" DOUBLE,
  "pass_accuracy" VARCHAR,
  "crosses" BIGINT,
  "cross_accuracy" VARCHAR,
  "goals_conceded_per_match" DOUBLE,
  "saves" BIGINT,
  "tackles" BIGINT,
  "tackle_success" VARCHAR,
  "blocked_shots" BIGINT,
  "interceptions" BIGINT,
  "clearances" BIGINT,
  "headed_clearance" BIGINT,
  "aerial_battles_duels_won" BIGINT,
  "errors_leading_to_goal" BIGINT,
  "own_goals" BIGINT,
  "yellow_cards" BIGINT,
  "red_cards" BIGINT,
  "fouls" BIGINT,
  "offsides" BIGINT
);

Share link

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