2021 NBA Draft Lottery Prospects
2021 NBA Draft Lottery Prospects Demographic and Advanced Statistics
@kaggle.mohammedfkhan_2021_nba_draft_lottery_prospects
2021 NBA Draft Lottery Prospects Demographic and Advanced Statistics
@kaggle.mohammedfkhan_2021_nba_draft_lottery_prospects
Created a dataset to better identify predictors in prospect statistical profiles for NBA success. Decided on measurable and advanced metric data as the foundation for feature engineering.
Data is acquired from a collection of verified and reputable sports websites (see metadata section). The statistics for each player are for their most recent season of basketball, in order to capture the most likely dvelopment and playstyle for each player.
My intention for this data is to label player archetypes and see how compatiable each players' playstyle is with their archetype.
CREATE TABLE n_2021_draft (
"last" VARCHAR,
"first" VARCHAR,
"today" TIMESTAMP,
"dob" TIMESTAMP,
"age" DOUBLE,
"height" DOUBLE,
"wingspan" DOUBLE,
"weight" BIGINT,
"gp" BIGINT,
"mp" BIGINT,
"ts" DOUBLE -- TS%,
"efg" DOUBLE -- EFG%,
"n_3par" DOUBLE -- 3PAr,
"ftr" DOUBLE,
"orb" DOUBLE -- ORB%,
"drb" DOUBLE -- DRB%,
"trb" DOUBLE -- TRB%,
"ast" DOUBLE -- AST%,
"stl" DOUBLE -- STL%,
"blk" DOUBLE -- BLK%,
"tov" DOUBLE -- TOV%,
"usg" DOUBLE -- USG%
);CREATE TABLE n_2021_nba_draft_lottery (
"last" VARCHAR,
"first" VARCHAR,
"today" TIMESTAMP,
"dob" TIMESTAMP,
"age" DOUBLE,
"height" BIGINT,
"wingspan" BIGINT,
"weight" BIGINT,
"gp" BIGINT,
"mp" BIGINT,
"ts" DOUBLE -- TS%,
"efg" DOUBLE -- EFG%,
"n_3par" DOUBLE -- 3PAr,
"ftr" DOUBLE,
"orb" DOUBLE -- ORB%,
"drb" DOUBLE -- DRB%,
"trb" DOUBLE -- TRB%,
"ast" DOUBLE -- AST%,
"stl" DOUBLE -- STL%,
"blk" DOUBLE -- BLK%,
"tov" DOUBLE -- TOV%,
"usg" DOUBLE -- USG%
);Anyone who has the link will be able to view this.