NBA - Boscoscore 2024 - 25
This Dataset contains all Box Scores of NBA games during the 2024 - 2025 season
@kaggle.albi9702_nba_boscoscore_2024_25
This Dataset contains all Box Scores of NBA games during the 2024 - 2025 season
@kaggle.albi9702_nba_boscoscore_2024_25
This Dataset contains all Box Scores of NBA games during the 2023 - 2024 season for each game.
The NBA, or National Basketball Association, is a professional basketball league in North America and one of the most prominent and popular basketball leagues globally.
The NBA, known for its intense competition and global appeal, is a league that not only showcases the talents of iconic players but also provides a treasure trove of statistical insights, with a myriad of performance metrics and analytics contributing to the in-depth analysis of each game. 🏀📊
For each game, there is a Box Score with basic statistics for each player.
Columns' description are listed below:
GAME_ID: Unique Identifier of the GameTEAM_ID: Unique Identifier of the Team. For Each GAME_ID there are only two TEAM_ID.TEAM_ABBREVIATION: Abbreviaton of the Team (e.g. GWS - Golden State Warrios).TEAM_CITY:PLAYER_ID: Unique Identifier of the PlayerPLAYER_NAME: Complete Name (Name and Surname) of the Player who played the game.NICKNAME: Nickname of the Player who played the game.START_POSITION: Position in which the player started the game (If populated, the player started the game).COMMENT:MIN: Number of minutes in which the player played the game.FGM: Number of Field Goals (both 2 and 3 Points) Made by the player in the game.FGA: Number of Field Goals (both 2 and 3 Points) Attempted by the player in the game.FG_PCT: Percentage of Field Goals (both 2 and 3 Points) by the player in the game.FG3M: Number of 3 Points Made by the player in the game.FG3A: Number of 3 Points Attempted by the player in the game.FG3_PCT: Percentage of 3 Points by the player in the game.FTM: Number of Free Throws Made by the player in the game.FTA: Number of Free Throws Attempted Made by the player in the game.FT_PCT: Percentage of Free Throws by the player in the game.OREB: Number of Offensive Rebounds reached by the player in the single game.DREB: Number of Defensive Rebounds reached by the player in the single game.REB: Number of Total Rebounds (Defensive and Offensive Rebounds) reached by the player in the single game.AST: Number of Assists done by the player in the single game.STL: Number of Steals done by the player in the single game.BLK: Number of Blocks done by the player in the single game.TO: Number of Turnovers done by the player in the single game.PF: Number of Personal Fouls done by the player in the single game.PTS: Number of Points done by the player in the single game.PLUS_MINUS: Number of Plus Minus done by the player in the single game.Data From: NBA API
CREATE TABLE nba_boxscores_2024_2025 (
"unnamed_0" BIGINT -- Unnamed: 0,
"game_id" BIGINT,
"team_id" BIGINT,
"team_abbreviation" VARCHAR,
"team_city" VARCHAR,
"player_id" BIGINT,
"player_name" VARCHAR,
"nickname" VARCHAR,
"start_position" VARCHAR,
"comment" VARCHAR,
"min" VARCHAR,
"fgm" DOUBLE,
"fga" DOUBLE,
"fg_pct" DOUBLE,
"fg3m" DOUBLE,
"fg3a" DOUBLE,
"fg3_pct" DOUBLE,
"ftm" DOUBLE,
"fta" DOUBLE,
"ft_pct" DOUBLE,
"oreb" DOUBLE,
"dreb" DOUBLE,
"reb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"to" DOUBLE,
"pf" DOUBLE,
"pts" DOUBLE,
"plus_minus" DOUBLE
);Anyone who has the link will be able to view this.