NBA Rookies 1979-2020
Do NBA rookies play longer than two years? (Stats 1980-2020)
@kaggle.ignaciovinuales_nba_rookies_stay_longer_than_2_years
Do NBA rookies play longer than two years? (Stats 1980-2020)
@kaggle.ignaciovinuales_nba_rookies_stay_longer_than_2_years
The dataset contains stats of NBA rookies' first year from season 1979-1980 to season 2019-2020, including both draft and non-draft players. Besides stats, you will find the team and year of debut, conference, and age of the player.
There are no missing values.
Note: stats are only from the rookie season, thus, the first year of an NBA player.
CREATE TABLE nba_rookies (
"unnamed_0" BIGINT -- Unnamed: 0,
"player" VARCHAR,
"team" VARCHAR,
"year" BIGINT,
"conf" VARCHAR,
"age" DOUBLE,
"career" DOUBLE,
"games" DOUBLE,
"mp" DOUBLE,
"pts" DOUBLE,
"fg" DOUBLE,
"fga" DOUBLE,
"fg_51ab2d" DOUBLE -- FG%,
"n_3p" DOUBLE -- 3P,
"n_3pa" DOUBLE -- 3PA,
"n_3p_d87a85" DOUBLE -- 3P%,
"ft" DOUBLE,
"fta" DOUBLE,
"ft_ba25d5" DOUBLE -- FT%,
"orb" DOUBLE,
"drb" DOUBLE,
"trb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" DOUBLE,
"mppg" DOUBLE,
"ptspg" DOUBLE,
"fgpg" DOUBLE,
"n_3ppg" DOUBLE -- 3Ppg,
"ftpg" DOUBLE,
"orbpg" DOUBLE,
"drbpg" DOUBLE,
"trbpg" DOUBLE,
"astpg" DOUBLE,
"stlpg" DOUBLE,
"blkpg" DOUBLE,
"tovpg" DOUBLE,
"pfpg" DOUBLE,
"target" BIGINT
);Anyone who has the link will be able to view this.