Baselight

Premier Lacrosse League Team Stats

Team stats for the fastest growing sports league in America.

@kaggle.evangower_premier_lacrosse_league_team_stats

Pll Team Stats
@kaggle.evangower_premier_lacrosse_league_team_stats.pll_team_stats

  • 27.31 KB
  • 29 rows
  • 33 columns
season

Season

team

Team

wins

Wins

losses

Losses

scores_for

Scores For

scores_against

Scores Against

score_differential

Score Differential

one_point_goals

One Point Goals

two_point_goals

Two Point Goals

assists

Assists

shots

Shots

shot_percentage

Shot Percentage

x2_point_shots

X2 Point Shots

x2_point_shot_pecentage

X2 Point Shot Pecentage

shots_on_goal

Shots On Goal

shots_on_goal_pecentage

Shots On Goal Pecentage

turnovers

Turnovers

caused_turnovers

Caused Turnovers

groundballs

Groundballs

faceoff_pecentage

Faceoff Pecentage

faceoffs_won

Faceoffs Won

faceoffs_lost

Faceoffs Lost

saves

Saves

save_percentage

Save Percentage

penalties

Penalties

penalty_minutes

Penalty Minutes

power_play_pecentage

Power Play Pecentage

power_play_goals

Power Play Goals

power_play_shots

Power Play Shots

x2_point_goals_allowed

X2 Point Goals Allowed

penalty_kill_pecentage

Penalty Kill Pecentage

penalty_kills

Penalty Kills

playoff_notes

Playoff Notes

2019Chaos73130128210612673820.31570.2112340.613144632720.4731331481560.55533180.47811830.6920 - 29Lost Semifinals
2019Whipsnakes64125116910112714420.26620.1942460.55797542620.5211341231330.5524130.2635770.63614 - 22Won Final
2019Atlas55125132-71098734020.29640.1252480.617124502860.6161671041400.53442270.435109100.721 - 30Lost Quarterfinals
2019Redwoods55116117-11122614350.26420.0482520.579122652560.4191061471170.52219280.3531220100.6439 - 14Lost Final
2019Archers5511210661006674380.24420.1432570.587130542660.4571111321260.55524160.51914950.71415 - 21Missed Playoffs
2019Chrome28127137-101137614150.29450.1562460.593139683290.5091421371290.50829160.237120.5614 - 25Missed Playoffs
2020Whipsnakes4825131744452580.3380.1051640.63696332230.69810445830.629139.50.41751220.7278 - 11Won Final
2020Archers316468-4621352130.3270.0371430.67191411670.487278720.5261180.30841830.54 - 8Lost Semifinals
2020Chrome316464583321900.32290.1031090.57480371570.5677658680.54415140.66761370.759 - 12Lost Quarterfinals
2020Redwoods226263-14210312420.22410.2441450.59994701670.3624783710.55919160.4592670.59 - 18Lost Semifinals

CREATE TABLE pll_team_stats (
  "season" BIGINT,
  "team" VARCHAR,
  "wins" BIGINT,
  "losses" BIGINT,
  "scores_for" BIGINT,
  "scores_against" BIGINT,
  "score_differential" BIGINT,
  "one_point_goals" BIGINT,
  "two_point_goals" BIGINT,
  "assists" BIGINT,
  "shots" BIGINT,
  "shot_percentage" DOUBLE,
  "x2_point_shots" BIGINT,
  "x2_point_shot_pecentage" DOUBLE,
  "shots_on_goal" BIGINT,
  "shots_on_goal_pecentage" DOUBLE,
  "turnovers" BIGINT,
  "caused_turnovers" BIGINT,
  "groundballs" BIGINT,
  "faceoff_pecentage" DOUBLE,
  "faceoffs_won" BIGINT,
  "faceoffs_lost" BIGINT,
  "saves" BIGINT,
  "save_percentage" DOUBLE,
  "penalties" BIGINT,
  "penalty_minutes" DOUBLE,
  "power_play_pecentage" DOUBLE,
  "power_play_goals" BIGINT,
  "power_play_shots" BIGINT,
  "x2_point_goals_allowed" BIGINT,
  "penalty_kill_pecentage" DOUBLE,
  "penalty_kills" VARCHAR,
  "playoff_notes" VARCHAR
);

Share link

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