NBA Players Per Million Births By Country
NBA All Players Born 1970-2000, Country, State if US, HT, WT, Draft Yr, College
@kaggle.tarheeltony_nba_players_per_million_births_by_country
NBA All Players Born 1970-2000, Country, State if US, HT, WT, Draft Yr, College
@kaggle.tarheeltony_nba_players_per_million_births_by_country
The file shows all NBA players born in the years 1970 to 2000. Included is country of birth, birth state (if USA), birth date, year of high school graduation (if USA), college, current team, number of births (in millions) in the years 1970 to 2000 in each country, number of NBA players from each country born in the years 1970 to 2000, and NBA players per million births, by country. Data sources:
https://www.basketball-reference.com/
https://basketball.realgm.com/nba/birth-countries/
https://ourworldindata.org/
The Country2 column is a list of the 80 countries in which NBA players were born.
The Number of Births 1970-2000 (mill) for each country is obtained from https://ourworldindata.org/
The Number of Players by Country column shows the total number of NBA players from each country born during the years 1970-2000.
The values in the column NBA Players per Million Births is obtained by calculating [Number of Players by Country]/[Number of Births 1970-2000(mill)].
CREATE TABLE nba_players_with_birthdates_1970_2000_players_per_mill_3dbc3bb4 (
"player" VARCHAR,
"first_name" VARCHAR,
"last_name" VARCHAR,
"country" VARCHAR,
"position" VARCHAR,
"ht" BIGINT,
"wt" VARCHAR,
"birth_city" VARCHAR,
"birth_state" VARCHAR,
"birth_date" VARCHAR,
"hs_grad" VARCHAR,
"draft_year" DOUBLE,
"college" VARCHAR,
"current_team" VARCHAR,
"country2" VARCHAR,
"number_of_births_1970_2000_mill" DOUBLE -- Number Of Births 1970-2000 (mill),
"number_of_players_by_country" DOUBLE,
"nba_players_per_million_births" DOUBLE
);Anyone who has the link will be able to view this.