Complete NBA Match Results (1949-2024)
Complete NBA Match Results (1949-2024) with Detailed Statistics
@kaggle.joybiswas389_nba_matches_results_1949_2024
Complete NBA Match Results (1949-2024) with Detailed Statistics
@kaggle.joybiswas389_nba_matches_results_1949_2024
Data Source: NBA Official Website
Web Scraping Method: Python BeautifulSoup library
This dataset comprises detailed results of NBA matches played between 1949 and 2024, sourced directly from the NBA official website. The data was collected through web scraping using Python's BeautifulSoup library. With 35 columns, it provides a comprehensive overview of each match, including team names, scores, player statistics, and period-wise scores.
The dataset includes matches with periods beyond Q4, indicating extra time (e.g., Q5 or greater).
Missing data in columns like team1_leader_name and team2_leader_name may occur when information is not available.
Explore this dataset to analyze the performance of teams, players, and trends over the extensive history of NBA matches.
CREATE TABLE nba (
"team1" VARCHAR,
"team2" VARCHAR,
"team1_score" BIGINT,
"team2_score" BIGINT,
"team1_leader_name" VARCHAR,
"team1_leader_points" DOUBLE,
"team1_leader_rebounds" DOUBLE,
"team1_leader_assists" DOUBLE,
"team1_leader_blocks" DOUBLE,
"team1_leader_steals" DOUBLE,
"team2_leader_name" VARCHAR,
"team2_leader_points" DOUBLE,
"team2_leader_rebounds" DOUBLE,
"team2_leader_assists" DOUBLE,
"team2_leader_blocks" DOUBLE,
"team2_leader_steals" DOUBLE,
"period_q1_team1" BIGINT,
"period_q1_team2" BIGINT,
"period_q2_team1" BIGINT,
"period_q2_team2" BIGINT,
"period_q3_team1" BIGINT,
"period_q3_team2" BIGINT,
"period_q4_team1" BIGINT,
"period_q4_team2" BIGINT,
"period_q5_team1" BIGINT,
"period_q5_team2" BIGINT,
"period_q6_team1" BIGINT,
"period_q6_team2" BIGINT,
"period_q7_team1" BIGINT,
"period_q7_team2" BIGINT,
"period_q8_team1" BIGINT,
"period_q8_team2" BIGINT,
"period_q9_team1" BIGINT,
"period_q9_team2" BIGINT,
"verdict" BIGINT
);
Anyone who has the link will be able to view this.