Baselight

Best Ever Basketball Players Stats

List of players who are considered the best to ever do it - and their statistics

@kaggle.akulvaishnavi_best_ever_basketball_players_stats

Bball
@kaggle.akulvaishnavi_best_ever_basketball_players_stats.bball

  • 26.22 KB
  • 100 rows
  • 25 columns
name

Name

pos

Pos

drafted

Drafted

retired

Retired

pick

Pick

peak_year

Peak Year

team

Team

g

G

mp

MP

pts

PTS

trb

TRB

ast

AST

per

PER

ewa

EWA

ws

WS

ws_48

WS/48

total_g

Total G

total_mp

Total MP

total_pts

Total PTS

total_trb

Total TRB

total_ast

Total AST

total_per

Total PER

total_ewa

Total EWA

total_ws

Total WS

total_ws_48

Total WS/48

LeBron JamesF2003N12009CLE8137.728.47.67.231.725.220.20.317142138.127.27.57.327.2349.2255.20.226
Kareem Abdul-JabbarC1969Y11972MIL8144.234.816.64.629.927.525.40.34156036.824.611.23.624.6319.8273.50.229
Michael JordanGF1984Y11988CHI8240.4355.55.931.727.921.30.309107238.330.16.25.327.9284214.10.251
Kobe BryantGF1996Y132006LAL804135.45.34.52822.815.30.224134636.1255.24.722.9240.2172.90.171
Tim DuncanFC1997Y12002SA8240.625.512.73.72721.117.80.2571392341910.8324.2248.2206.40.209
Chris PaulPG2005N42009NOL7838.522.85.5113022.718.30.293121434.417.94.59.524.3221.9205.10.236
Wilt ChamberlainC1959Y31962GS8048.550.425.72.432.133.223.10.286104545.830.122.94.426.2296.3247.40.248
Kevin GarnettFC1995Y52004MIN8239.424.213.9529.423.618.40.273146234.517.8103.722.7232.9191.50.182
Jerry WestG1960Y21966LAL7940.731.37.16.124.617.717.10.25593239.2275.86.722.9177.1162.30.213
Oscar RobertsonPG1960Y11964SAC7945.131.49.91127.623.520.60.278104042.225.77.59.523.2213.1189.10.207

CREATE TABLE bball (
  "name" VARCHAR,
  "pos" VARCHAR,
  "drafted" BIGINT,
  "retired" VARCHAR,
  "pick" BIGINT,
  "peak_year" BIGINT,
  "team" VARCHAR,
  "g" BIGINT,
  "mp" DOUBLE,
  "pts" DOUBLE,
  "trb" DOUBLE,
  "ast" DOUBLE,
  "per" DOUBLE,
  "ewa" DOUBLE,
  "ws" DOUBLE,
  "ws_48" DOUBLE,
  "total_g" BIGINT,
  "total_mp" DOUBLE,
  "total_pts" DOUBLE,
  "total_trb" DOUBLE,
  "total_ast" DOUBLE,
  "total_per" DOUBLE,
  "total_ewa" DOUBLE,
  "total_ws" DOUBLE,
  "total_ws_48" DOUBLE
);

Share link

Anyone who has the link will be able to view this.