NBA Stat Projections For 2019-2020 Season
Projected stats for all NBA players including points, assists, rebounds, etc.
@kaggle.calvingee_nba_stat_projections_2019
Projected stats for all NBA players including points, assists, rebounds, etc.
@kaggle.calvingee_nba_stat_projections_2019
When deciding how to draft fantasy players and creating my own draft order, the first thing I look to is the projected stats. This data set was scrapped off of the FantasyPros.com website and is based off of their projections. Feel free to use this dataset for fantasy research or whatever you may need it for.
Note: This is my first created dataset. Feedback is appreciated.
These statistics were taken from a projection website 2 days before the season began. Each row contains a player and their projected stats for the 2019-2020 NBA season. The stats include all of the main stats such as points, assists, rebounds, etc. but is missing some free throw data and field goal attempts.
Source: https://www.fantasypros.com/nba/projections/ros-overall.php
(However, their site updates throughout the season and stats may have changed)
CREATE TABLE fantasypros_fantasy_basketball_overall_2019_projections (
"player" VARCHAR,
"team" VARCHAR,
"positions" VARCHAR,
"pts" DOUBLE,
"reb" DOUBLE,
"ast" DOUBLE,
"blk" DOUBLE,
"stl" DOUBLE,
"fg" DOUBLE -- FG%,
"ft" DOUBLE -- FT%,
"n_3pm" DOUBLE -- 3PM,
"gp" DOUBLE,
"min" DOUBLE,
"to" DOUBLE
);
Anyone who has the link will be able to view this.