NBA All-Star Game Data
All basic information for every NBA All-Star game edition
@kaggle.ahmedbendaly_nba_all_star_game_data
All basic information for every NBA All-Star game edition
@kaggle.ahmedbendaly_nba_all_star_game_data
The data for this project has been sourced primarily from Basketball Reference.
The dataset has 5 files and I'll explain briefly each one of the files:
This data set is the raw data for an articel about the decline of the all-star game that I worked on, You can find the article that I worked on using this link.
If you want the transformed data or specific data that I used for the graphs you can contact me andI'll provide it for you.
CREATE TABLE absences (
"edition_year" BIGINT,
"player_name" VARCHAR,
"reason" VARCHAR
);CREATE TABLE games (
"edition_year" BIGINT,
"edition_date" TIMESTAMP,
"attendance" DOUBLE,
"team1" VARCHAR,
"team1score" BIGINT,
"team2" VARCHAR,
"team2score" BIGINT,
"mvp" VARCHAR,
"comvp" VARCHAR,
"arena" VARCHAR
);CREATE TABLE players (
"player_name" VARCHAR,
"total" BIGINT,
"nba" BIGINT,
"aba" BIGINT,
"country" VARCHAR,
"height" BIGINT,
"weight" BIGINT
);CREATE TABLE score (
"edition_year" BIGINT,
"allstarteam" VARCHAR,
"player_name" VARCHAR,
"team" VARCHAR,
"mp" VARCHAR,
"fg" DOUBLE,
"fga" DOUBLE,
"threep" DOUBLE,
"threepa" DOUBLE,
"ft" DOUBLE,
"fta" DOUBLE,
"orb" DOUBLE,
"drb" DOUBLE,
"trb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" DOUBLE,
"pts" DOUBLE,
"fg_per" DOUBLE,
"threep_per" DOUBLE,
"ft_per" DOUBLE
);CREATE TABLE voting (
"edition_year" BIGINT,
"player_name" VARCHAR,
"votes" BIGINT,
"rank" BIGINT
);Anyone who has the link will be able to view this.