Skip to content

Instantly share code, notes, and snippets.

@swghosh
Last active June 29, 2025 12:10
Show Gist options
  • Save swghosh/6e8c0ff5f3a4694e725d495c48ddf3f1 to your computer and use it in GitHub Desktop.
Save swghosh/6e8c0ff5f3a4694e725d495c48ddf3f1 to your computer and use it in GitHub Desktop.
NBA Dataset Dashboard of player salaries by demography
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NBA Player Statistics Interactive Dashboard | swarupg2 (@swghosh)</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
font-family: 'Ubuntu Mono', sans-serif;
}
</style>
</head>
<body class="bg-gray-100 p-4">
<h1 class="text-4xl font-bold text-center mb-8 text-gray-800 py-4 px-2">NBA Player Statistics Dashboard</h1>
<div class="container mx-auto mb-8 p-6 bg-white rounded-lg shadow-md">
<p class="text-gray-700 leading-relaxed">
This dashboard provides information covering <strong>player salaries</strong>, <strong>positional distributions</strong>, and demographic attributes such as <strong>age</strong>, <strong>height</strong>, and <strong>weight</strong>.
It also provides <strong>college affiliations</strong> and provides an in-depth view of <strong>salary ranges by position</strong>.
<br><br>
It supports cross-filtering selecting data in one chart filters the data on others providing an interactive experience.
The publicly available <a class="text-blue-600 hover:text-blue-800 underline hover:no-underline transition-all duration-200 ease-in-out" href="https://www.kaggle.com/datasets/vsharma19/nbacsv">NBA dataset was used as the data source</a>.
</p>
<br>
<ul class="list-disc list-inside text-gray-700 ml-4">
<li>
<strong>Interactive Filtering:</strong> Users can dynamically filter displayed charts by clicking on
specific data points within any visualization (e.g. a player's bar in the salary chart, a segment of
the position pie chart, or a college bar). This action refines the data across the entire dashboard
to reflect the selected criteria.
</li>
<li>
<strong>Reset Functionality:</strong> To revert to the complete dataset and clear all active filters,
users can simply double-click anywhere within any chart.
</li>
</ul>
<br>
<p class="text-gray-700 leading-relaxed">
Authored by: Swarup Ghosh &lt;[email protected]&gt;<br><a class="text-blue-600 hover:text-blue-800 underline hover:no-underline transition-all duration-200 ease-in-out" href="https://gist.github.com/swghosh/6e8c0ff5f3a4694e725d495c48ddf3f1">[source code available on GitHub]</a>
</p>
</div>
<div class="container mx-auto">
<div class="flex flex-wrap mb-8 p-6">
<div id="salary-chart" class="w-full lg:w-1/2 px-2 mb-4 lg:mb-0"></div>
<div id="position-chart" class="w-full lg:w-1/2 px-2"></div>
</div>
<div class="flex flex-wrap mb-8 p-6">
<div id="college-chart" class="w-full lg:w-1/2 px-2 mb-4 lg:mb-0"></div>
<div id="salary-range-per-position-chart" class="w-full lg:w-1/2 px-2"></div>
</div>
<div class="flex flex-wrap mb-8 p-6">
<div id="age-chart" class="w-full md:w-1/3 px-2 mb-4 md:mb-0"></div>
<div id="height-chart" class="w-full md:w-1/3 px-2 mb-4 md:mb-0"></div>
<div id="weight-chart" class="w-full md:w-1/3 px-2"></div>
</div>
</div>
<script>
const playersData = [
{"Name": "Avery Bradley", "Team": "Boston Celtics", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.17, "Weight": 180.0, "College": "Texas", "Salary": 7730337.0},
{"Name": "Jae Crowder", "Team": "Boston Celtics", "Number": "99.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.5, "Weight": 235.0, "College": "Marquette", "Salary": 6796117.0},
{"Name": "John Holland", "Team": "Boston Celtics", "Number": "30.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.42, "Weight": 205.0, "College": "Boston University", "Salary": 0},
{"Name": "R.J. Hunter", "Team": "Boston Celtics", "Number": "28.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.42, "Weight": 185.0, "College": "Georgia State", "Salary": 1148640.0},
{"Name": "Jonas Jerebko", "Team": "Boston Celtics", "Number": "8.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.83, "Weight": 231.0, "College": "", "Salary": 5000000.0},
{"Name": "Amir Johnson", "Team": "Boston Celtics", "Number": "90.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.75, "Weight": 240.0, "College": "", "Salary": 12000000.0},
{"Name": "Jordan Mickey", "Team": "Boston Celtics", "Number": "55.0", "Position": "Power Forward (PF)", "Age": 21.0, "Height": 6.67, "Weight": 235.0, "College": "LSU", "Salary": 1170960.0},
{"Name": "Kelly Olynyk", "Team": "Boston Celtics", "Number": "41.0", "Position": "Center (C)", "Age": 25.0, "Height": 7.0, "Weight": 238.0, "College": "Gonzaga", "Salary": 2165160.0},
{"Name": "Terry Rozier", "Team": "Boston Celtics", "Number": "12.0", "Position": "Point Guard (PG)", "Age": 22.0, "Height": 6.17, "Weight": 190.0, "College": "Louisville", "Salary": 1824360.0},
{"Name": "Marcus Smart", "Team": "Boston Celtics", "Number": "36.0", "Position": "Point Guard (PG)", "Age": 22.0, "Height": 6.33, "Weight": 220.0, "College": "Oklahoma State", "Salary": 3431040.0},
{"Name": "Jared Sullinger", "Team": "Boston Celtics", "Number": "7.0", "Position": "Center (C)", "Age": 24.0, "Height": 6.75, "Weight": 260.0, "College": "Ohio State", "Salary": 2569260.0},
{"Name": "Isaiah Thomas", "Team": "Boston Celtics", "Number": "4.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 5.75, "Weight": 185.0, "College": "Washington", "Salary": 6912869.0},
{"Name": "Evan Turner", "Team": "Boston Celtics", "Number": "11.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.58, "Weight": 220.0, "College": "Ohio State", "Salary": 3425510.0},
{"Name": "James Young", "Team": "Boston Celtics", "Number": "13.0", "Position": "Shooting Guard (SG)", "Age": 20.0, "Height": 6.5, "Weight": 215.0, "College": "Kentucky", "Salary": 1749840.0},
{"Name": "Tyler Zeller", "Team": "Boston Celtics", "Number": "44.0", "Position": "Center (C)", "Age": 26.0, "Height": 7.0, "Weight": 253.0, "College": "North Carolina", "Salary": 2616975.0},
{"Name": "Bojan Bogdanovic", "Team": "Brooklyn Nets", "Number": "44.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.67, "Weight": 216.0, "College": "", "Salary": 3425510.0},
{"Name": "Markel Brown", "Team": "Brooklyn Nets", "Number": "22.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.25, "Weight": 190.0, "College": "Oklahoma State", "Salary": 845059.0},
{"Name": "Wayne Ellington", "Team": "Brooklyn Nets", "Number": "21.0", "Position": "Shooting Guard (SG)", "Age": 28.0, "Height": 6.33, "Weight": 200.0, "College": "North Carolina", "Salary": 1500000.0},
{"Name": "Rondae Hollis-Jefferson", "Team": "Brooklyn Nets", "Number": "24.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.58, "Weight": 220.0, "College": "Arizona", "Salary": 1335480.0},
{"Name": "Jarrett Jack", "Team": "Brooklyn Nets", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 32.0, "Height": 6.25, "Weight": 200.0, "College": "Georgia Tech", "Salary": 6300000.0},
{"Name": "Sergey Karasev", "Team": "Brooklyn Nets", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.58, "Weight": 208.0, "College": "", "Salary": 1599840.0},
{"Name": "Sean Kilpatrick", "Team": "Brooklyn Nets", "Number": "6.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.33, "Weight": 219.0, "College": "Cincinnati", "Salary": 134215.0},
{"Name": "Shane Larkin", "Team": "Brooklyn Nets", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 5.92, "Weight": 175.0, "College": "Miami (FL)", "Salary": 1500000.0},
{"Name": "Brook Lopez", "Team": "Brooklyn Nets", "Number": "11.0", "Position": "Center (C)", "Age": 28.0, "Height": 7.0, "Weight": 275.0, "College": "Stanford", "Salary": 19689000.0},
{"Name": "Chris McCullough", "Team": "Brooklyn Nets", "Number": "1.0", "Position": "Power Forward (PF)", "Age": 21.0, "Height": 6.92, "Weight": 200.0, "College": "Syracuse", "Salary": 1140240.0},
{"Name": "Willie Reed", "Team": "Brooklyn Nets", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.83, "Weight": 220.0, "College": "Saint Louis", "Salary": 947276.0},
{"Name": "Thomas Robinson", "Team": "Brooklyn Nets", "Number": "41.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.83, "Weight": 237.0, "College": "Kansas", "Salary": 981348.0},
{"Name": "Henry Sims", "Team": "Brooklyn Nets", "Number": "14.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.83, "Weight": 248.0, "College": "Georgetown", "Salary": 947276.0},
{"Name": "Donald Sloan", "Team": "Brooklyn Nets", "Number": "15.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 6.25, "Weight": 205.0, "College": "Texas A&M", "Salary": 947276.0},
{"Name": "Thaddeus Young", "Team": "Brooklyn Nets", "Number": "30.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.67, "Weight": 221.0, "College": "Georgia Tech", "Salary": 11235955.0},
{"Name": "Arron Afflalo", "Team": "New York Knicks", "Number": "4.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.42, "Weight": 210.0, "College": "UCLA", "Salary": 8000000.0},
{"Name": "Lou Amundson", "Team": "New York Knicks", "Number": "17.0", "Position": "Power Forward (PF)", "Age": 33.0, "Height": 6.75, "Weight": 220.0, "College": "UNLV", "Salary": 1635476.0},
{"Name": "Thanasis Antetokounmpo", "Team": "New York Knicks", "Number": "43.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.58, "Weight": 205.0, "College": "", "Salary": 30888.0},
{"Name": "Carmelo Anthony", "Team": "New York Knicks", "Number": "7.0", "Position": "Small Forward (SF)", "Age": 32.0, "Height": 6.67, "Weight": 240.0, "College": "Syracuse", "Salary": 22875000.0},
{"Name": "Jose Calderon", "Team": "New York Knicks", "Number": "3.0", "Position": "Point Guard (PG)", "Age": 34.0, "Height": 6.25, "Weight": 200.0, "College": "", "Salary": 7402812.0},
{"Name": "Cleanthony Early", "Team": "New York Knicks", "Number": "11.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.67, "Weight": 210.0, "College": "Wichita State", "Salary": 845059.0},
{"Name": "Langston Galloway", "Team": "New York Knicks", "Number": "2.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.17, "Weight": 200.0, "College": "Saint Joseph's", "Salary": 845059.0},
{"Name": "Jerian Grant", "Team": "New York Knicks", "Number": "13.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.33, "Weight": 195.0, "College": "Notre Dame", "Salary": 1572360.0},
{"Name": "Robin Lopez", "Team": "New York Knicks", "Number": "8.0", "Position": "Center (C)", "Age": 28.0, "Height": 7.0, "Weight": 255.0, "College": "Stanford", "Salary": 12650000.0},
{"Name": "Kyle O'Quinn", "Team": "New York Knicks", "Number": "9.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.83, "Weight": 250.0, "College": "Norfolk State", "Salary": 3750000.0},
{"Name": "Kristaps Porzingis", "Team": "New York Knicks", "Number": "6.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 7.25, "Weight": 240.0, "College": "", "Salary": 4131720.0},
{"Name": "Kevin Seraphin", "Team": "New York Knicks", "Number": "1.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.83, "Weight": 278.0, "College": "", "Salary": 2814000.0},
{"Name": "Lance Thomas", "Team": "New York Knicks", "Number": "42.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.67, "Weight": 235.0, "College": "Duke", "Salary": 1636842.0},
{"Name": "Sasha Vujacic", "Team": "New York Knicks", "Number": "18.0", "Position": "Shooting Guard (SG)", "Age": 32.0, "Height": 6.58, "Weight": 195.0, "College": "", "Salary": 947276.0},
{"Name": "Derrick Williams", "Team": "New York Knicks", "Number": "23.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.67, "Weight": 240.0, "College": "Arizona", "Salary": 4000000.0},
{"Name": "Tony Wroten", "Team": "New York Knicks", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.5, "Weight": 205.0, "College": "Washington", "Salary": 167406.0},
{"Name": "Elton Brand", "Team": "Philadelphia 76ers", "Number": "42.0", "Position": "Power Forward (PF)", "Age": 37.0, "Height": 6.75, "Weight": 254.0, "College": "Duke", "Salary": 0},
{"Name": "Isaiah Canaan", "Team": "Philadelphia 76ers", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.0, "Weight": 201.0, "College": "Murray State", "Salary": 947276.0},
{"Name": "Robert Covington", "Team": "Philadelphia 76ers", "Number": "33.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.75, "Weight": 215.0, "College": "Tennessee State", "Salary": 1000000.0},
{"Name": "Joel Embiid", "Team": "Philadelphia 76ers", "Number": "21.0", "Position": "Center (C)", "Age": 22.0, "Height": 7.0, "Weight": 250.0, "College": "Kansas", "Salary": 4626960.0},
{"Name": "Jerami Grant", "Team": "Philadelphia 76ers", "Number": "39.0", "Position": "Small Forward (SF)", "Age": 22.0, "Height": 6.67, "Weight": 210.0, "College": "Syracuse", "Salary": 845059.0},
{"Name": "Richaun Holmes", "Team": "Philadelphia 76ers", "Number": "22.0", "Position": "Power Forward (PF)", "Age": 22.0, "Height": 6.83, "Weight": 245.0, "College": "Bowling Green", "Salary": 1074169.0},
{"Name": "Carl Landry", "Team": "Philadelphia 76ers", "Number": "7.0", "Position": "Power Forward (PF)", "Age": 32.0, "Height": 6.75, "Weight": 248.0, "College": "Purdue", "Salary": 6500000.0},
{"Name": "Kendall Marshall", "Team": "Philadelphia 76ers", "Number": "5.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.33, "Weight": 200.0, "College": "North Carolina", "Salary": 2144772.0},
{"Name": "T.J. McConnell", "Team": "Philadelphia 76ers", "Number": "12.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.17, "Weight": 200.0, "College": "Arizona", "Salary": 525093.0},
{"Name": "Nerlens Noel", "Team": "Philadelphia 76ers", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 22.0, "Height": 6.92, "Weight": 228.0, "College": "Kentucky", "Salary": 3457800.0},
{"Name": "Jahlil Okafor", "Team": "Philadelphia 76ers", "Number": "8.0", "Position": "Center (C)", "Age": 20.0, "Height": 6.92, "Weight": 275.0, "College": "Duke", "Salary": 4582680.0},
{"Name": "Ish Smith", "Team": "Philadelphia 76ers", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.0, "Weight": 175.0, "College": "Wake Forest", "Salary": 947276.0},
{"Name": "Nik Stauskas", "Team": "Philadelphia 76ers", "Number": "11.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.5, "Weight": 205.0, "College": "Michigan", "Salary": 2869440.0},
{"Name": "Hollis Thompson", "Team": "Philadelphia 76ers", "Number": "31.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.67, "Weight": 206.0, "College": "Georgetown", "Salary": 947276.0},
{"Name": "Christian Wood", "Team": "Philadelphia 76ers", "Number": "35.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.92, "Weight": 220.0, "College": "UNLV", "Salary": 525093.0},
{"Name": "Bismack Biyombo", "Team": "Toronto Raptors", "Number": "8.0", "Position": "Center (C)", "Age": 23.0, "Height": 6.75, "Weight": 245.0, "College": "", "Salary": 2814000.0},
{"Name": "Bruno Caboclo", "Team": "Toronto Raptors", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 20.0, "Height": 6.75, "Weight": 205.0, "College": "", "Salary": 1524000.0},
{"Name": "DeMarre Carroll", "Team": "Toronto Raptors", "Number": "5.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.67, "Weight": 212.0, "College": "Missouri", "Salary": 13600000.0},
{"Name": "DeMar DeRozan", "Team": "Toronto Raptors", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.58, "Weight": 220.0, "College": "USC", "Salary": 10050000.0},
{"Name": "James Johnson", "Team": "Toronto Raptors", "Number": "3.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.75, "Weight": 250.0, "College": "Wake Forest", "Salary": 2500000.0},
{"Name": "Cory Joseph", "Team": "Toronto Raptors", "Number": "6.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.25, "Weight": 190.0, "College": "Texas", "Salary": 7000000.0},
{"Name": "Kyle Lowry", "Team": "Toronto Raptors", "Number": "7.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.0, "Weight": 205.0, "College": "Villanova", "Salary": 12000000.0},
{"Name": "Lucas Nogueira", "Team": "Toronto Raptors", "Number": "92.0", "Position": "Center (C)", "Age": 23.0, "Height": 7.0, "Weight": 220.0, "College": "", "Salary": 1842000.0},
{"Name": "Patrick Patterson", "Team": "Toronto Raptors", "Number": "54.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.75, "Weight": 235.0, "College": "Kentucky", "Salary": 6268675.0},
{"Name": "Norman Powell", "Team": "Toronto Raptors", "Number": "24.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.33, "Weight": 215.0, "College": "UCLA", "Salary": 650000.0},
{"Name": "Terrence Ross", "Team": "Toronto Raptors", "Number": "31.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.58, "Weight": 195.0, "College": "Washington", "Salary": 3553917.0},
{"Name": "Luis Scola", "Team": "Toronto Raptors", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 36.0, "Height": 6.75, "Weight": 240.0, "College": "", "Salary": 2900000.0},
{"Name": "Jason Thompson", "Team": "Toronto Raptors", "Number": "1.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.92, "Weight": 250.0, "College": "Rider", "Salary": 245177.0},
{"Name": "Jonas Valanciunas", "Team": "Toronto Raptors", "Number": "17.0", "Position": "Center (C)", "Age": 24.0, "Height": 7.0, "Weight": 255.0, "College": "", "Salary": 4660482.0},
{"Name": "Delon Wright", "Team": "Toronto Raptors", "Number": "55.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.42, "Weight": 190.0, "College": "Utah", "Salary": 1509360.0},
{"Name": "Leandro Barbosa", "Team": "Golden State Warriors", "Number": "19.0", "Position": "Shooting Guard (SG)", "Age": 33.0, "Height": 6.25, "Weight": 194.0, "College": "", "Salary": 2500000.0},
{"Name": "Harrison Barnes", "Team": "Golden State Warriors", "Number": "40.0", "Position": "Small Forward (SF)", "Age": 24.0, "Height": 6.67, "Weight": 225.0, "College": "North Carolina", "Salary": 3873398.0},
{"Name": "Andrew Bogut", "Team": "Golden State Warriors", "Number": "12.0", "Position": "Center (C)", "Age": 31.0, "Height": 7.0, "Weight": 260.0, "College": "Utah", "Salary": 13800000.0},
{"Name": "Ian Clark", "Team": "Golden State Warriors", "Number": "21.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.25, "Weight": 175.0, "College": "Belmont", "Salary": 947276.0},
{"Name": "Stephen Curry", "Team": "Golden State Warriors", "Number": "30.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 6.25, "Weight": 190.0, "College": "Davidson", "Salary": 11370786.0},
{"Name": "Festus Ezeli", "Team": "Golden State Warriors", "Number": "31.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.92, "Weight": 265.0, "College": "Vanderbilt", "Salary": 2008748.0},
{"Name": "Draymond Green", "Team": "Golden State Warriors", "Number": "23.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.58, "Weight": 230.0, "College": "Michigan State", "Salary": 14260870.0},
{"Name": "Andre Iguodala", "Team": "Golden State Warriors", "Number": "9.0", "Position": "Small Forward (SF)", "Age": 32.0, "Height": 6.5, "Weight": 215.0, "College": "Arizona", "Salary": 11710456.0},
{"Name": "Shaun Livingston", "Team": "Golden State Warriors", "Number": "34.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.58, "Weight": 192.0, "College": "", "Salary": 5543725.0},
{"Name": "Kevon Looney", "Team": "Golden State Warriors", "Number": "36.0", "Position": "Small Forward (SF)", "Age": 20.0, "Height": 6.75, "Weight": 220.0, "College": "UCLA", "Salary": 1131960.0},
{"Name": "James Michael McAdoo", "Team": "Golden State Warriors", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.75, "Weight": 240.0, "College": "North Carolina", "Salary": 845059.0},
{"Name": "Brandon Rush", "Team": "Golden State Warriors", "Number": "4.0", "Position": "Small Forward (SF)", "Age": 30.0, "Height": 6.5, "Weight": 220.0, "College": "Kansas", "Salary": 1270964.0},
{"Name": "Marreese Speights", "Team": "Golden State Warriors", "Number": "5.0", "Position": "Center (C)", "Age": 28.0, "Height": 6.83, "Weight": 255.0, "College": "Florida", "Salary": 3815000.0},
{"Name": "Klay Thompson", "Team": "Golden State Warriors", "Number": "11.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.58, "Weight": 215.0, "College": "Washington State", "Salary": 15501000.0},
{"Name": "Anderson Varejao", "Team": "Golden State Warriors", "Number": "18.0", "Position": "Power Forward (PF)", "Age": 33.0, "Height": 6.92, "Weight": 273.0, "College": "", "Salary": 289755.0},
{"Name": "Cole Aldrich", "Team": "Los Angeles Clippers", "Number": "45.0", "Position": "Center (C)", "Age": 27.0, "Height": 6.92, "Weight": 250.0, "College": "Kansas", "Salary": 1100602.0},
{"Name": "Jeff Ayres", "Team": "Los Angeles Clippers", "Number": "19.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.75, "Weight": 250.0, "College": "Arizona State", "Salary": 111444.0},
{"Name": "Jamal Crawford", "Team": "Los Angeles Clippers", "Number": "11.0", "Position": "Shooting Guard (SG)", "Age": 36.0, "Height": 6.42, "Weight": 195.0, "College": "Michigan", "Salary": 5675000.0},
{"Name": "Branden Dawson", "Team": "Los Angeles Clippers", "Number": "22.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.5, "Weight": 225.0, "College": "Michigan State", "Salary": 525093.0},
{"Name": "Jeff Green", "Team": "Los Angeles Clippers", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.75, "Weight": 235.0, "College": "Georgetown", "Salary": 9650000.0},
{"Name": "Blake Griffin", "Team": "Los Angeles Clippers", "Number": "32.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.83, "Weight": 251.0, "College": "Oklahoma", "Salary": 18907726.0},
{"Name": "Wesley Johnson", "Team": "Los Angeles Clippers", "Number": "33.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.58, "Weight": 215.0, "College": "Syracuse", "Salary": 1100602.0},
{"Name": "DeAndre Jordan", "Team": "Los Angeles Clippers", "Number": "6.0", "Position": "Center (C)", "Age": 27.0, "Height": 6.92, "Weight": 265.0, "College": "Texas A&M", "Salary": 19689000.0},
{"Name": "Luc Richard Mbah a Moute", "Team": "Los Angeles Clippers", "Number": "12.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.67, "Weight": 230.0, "College": "UCLA", "Salary": 947276.0},
{"Name": "Chris Paul", "Team": "Los Angeles Clippers", "Number": "3.0", "Position": "Point Guard (PG)", "Age": 31.0, "Height": 6.0, "Weight": 175.0, "College": "Wake Forest", "Salary": 21468695.0},
{"Name": "Paul Pierce", "Team": "Los Angeles Clippers", "Number": "34.0", "Position": "Small Forward (SF)", "Age": 38.0, "Height": 6.58, "Weight": 235.0, "College": "Kansas", "Salary": 3376000.0},
{"Name": "Pablo Prigioni", "Team": "Los Angeles Clippers", "Number": "9.0", "Position": "Point Guard (PG)", "Age": 39.0, "Height": 6.25, "Weight": 185.0, "College": "", "Salary": 947726.0},
{"Name": "JJ Redick", "Team": "Los Angeles Clippers", "Number": "4.0", "Position": "Shooting Guard (SG)", "Age": 31.0, "Height": 6.33, "Weight": 190.0, "College": "Duke", "Salary": 7085000.0},
{"Name": "Austin Rivers", "Team": "Los Angeles Clippers", "Number": "25.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.33, "Weight": 200.0, "College": "Duke", "Salary": 3110796.0},
{"Name": "C.J. Wilcox", "Team": "Los Angeles Clippers", "Number": "30.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.42, "Weight": 195.0, "College": "Washington", "Salary": 1159680.0},
{"Name": "Brandon Bass", "Team": "Los Angeles Lakers", "Number": "2.0", "Position": "Power Forward (PF)", "Age": 31.0, "Height": 6.67, "Weight": 250.0, "College": "LSU", "Salary": 3000000.0},
{"Name": "Tarik Black", "Team": "Los Angeles Lakers", "Number": "28.0", "Position": "Center (C)", "Age": 24.0, "Height": 6.75, "Weight": 250.0, "College": "Kansas", "Salary": 845059.0},
{"Name": "Anthony Brown", "Team": "Los Angeles Lakers", "Number": "3.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.58, "Weight": 210.0, "College": "Stanford", "Salary": 700000.0},
{"Name": "Kobe Bryant", "Team": "Los Angeles Lakers", "Number": "24.0", "Position": "Small Forward (SF)", "Age": 37.0, "Height": 6.5, "Weight": 212.0, "College": "", "Salary": 25000000.0},
{"Name": "Jordan Clarkson", "Team": "Los Angeles Lakers", "Number": "6.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.42, "Weight": 194.0, "College": "Missouri", "Salary": 845059.0},
{"Name": "Roy Hibbert", "Team": "Los Angeles Lakers", "Number": "17.0", "Position": "Center (C)", "Age": 29.0, "Height": 7.17, "Weight": 270.0, "College": "Georgetown", "Salary": 15592217.0},
{"Name": "Marcelo Huertas", "Team": "Los Angeles Lakers", "Number": "9.0", "Position": "Point Guard (PG)", "Age": 33.0, "Height": 6.25, "Weight": 200.0, "College": "", "Salary": 525093.0},
{"Name": "Ryan Kelly", "Team": "Los Angeles Lakers", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.92, "Weight": 230.0, "College": "Duke", "Salary": 1724250.0},
{"Name": "Larry Nance Jr.", "Team": "Los Angeles Lakers", "Number": "7.0", "Position": "Power Forward (PF)", "Age": 23.0, "Height": 6.75, "Weight": 230.0, "College": "Wyoming", "Salary": 1155600.0},
{"Name": "Julius Randle", "Team": "Los Angeles Lakers", "Number": "30.0", "Position": "Power Forward (PF)", "Age": 21.0, "Height": 6.75, "Weight": 250.0, "College": "Kentucky", "Salary": 3132240.0},
{"Name": "D'Angelo Russell", "Team": "Los Angeles Lakers", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 20.0, "Height": 6.42, "Weight": 195.0, "College": "Ohio State", "Salary": 5103120.0},
{"Name": "Robert Sacre", "Team": "Los Angeles Lakers", "Number": "50.0", "Position": "Center (C)", "Age": 27.0, "Height": 7.0, "Weight": 270.0, "College": "Gonzaga", "Salary": 981348.0},
{"Name": "Louis Williams", "Team": "Los Angeles Lakers", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 29.0, "Height": 6.08, "Weight": 175.0, "College": "", "Salary": 7000000.0},
{"Name": "Metta World Peace", "Team": "Los Angeles Lakers", "Number": "37.0", "Position": "Small Forward (SF)", "Age": 36.0, "Height": 6.58, "Weight": 260.0, "College": "St. John's", "Salary": 947276.0},
{"Name": "Nick Young", "Team": "Los Angeles Lakers", "Number": "0.0", "Position": "Small Forward (SF)", "Age": 31.0, "Height": 6.58, "Weight": 210.0, "College": "USC", "Salary": 5219169.0},
{"Name": "Eric Bledsoe", "Team": "Phoenix Suns", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 26.0, "Height": 6.08, "Weight": 190.0, "College": "Kentucky", "Salary": 13500000.0},
{"Name": "Devin Booker", "Team": "Phoenix Suns", "Number": "1.0", "Position": "Shooting Guard (SG)", "Age": 19.0, "Height": 6.5, "Weight": 206.0, "College": "Kentucky", "Salary": 2127840.0},
{"Name": "Chase Budinger", "Team": "Phoenix Suns", "Number": "10.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.58, "Weight": 209.0, "College": "Arizona", "Salary": 206192.0},
{"Name": "Tyson Chandler", "Team": "Phoenix Suns", "Number": "4.0", "Position": "Center (C)", "Age": 33.0, "Height": 7.08, "Weight": 240.0, "College": "", "Salary": 13000000.0},
{"Name": "Archie Goodwin", "Team": "Phoenix Suns", "Number": "20.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.42, "Weight": 200.0, "College": "Kentucky", "Salary": 1160160.0},
{"Name": "John Jenkins", "Team": "Phoenix Suns", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.33, "Weight": 215.0, "College": "Vanderbilt", "Salary": 981348.0},
{"Name": "Brandon Knight", "Team": "Phoenix Suns", "Number": "3.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.25, "Weight": 189.0, "College": "Kentucky", "Salary": 13500000.0},
{"Name": "Alex Len", "Team": "Phoenix Suns", "Number": "21.0", "Position": "Center (C)", "Age": 22.0, "Height": 7.08, "Weight": 260.0, "College": "Maryland", "Salary": 3807120.0},
{"Name": "Jon Leuer", "Team": "Phoenix Suns", "Number": "30.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.83, "Weight": 228.0, "College": "Wisconsin", "Salary": 1035000.0},
{"Name": "Phil Pressey", "Team": "Phoenix Suns", "Number": "25.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 5.92, "Weight": 175.0, "College": "Missouri", "Salary": 55722.0},
{"Name": "Ronnie Price", "Team": "Phoenix Suns", "Number": "14.0", "Position": "Point Guard (PG)", "Age": 32.0, "Height": 6.17, "Weight": 190.0, "College": "Utah Valley", "Salary": 947276.0},
{"Name": "Mirza Teletovic", "Team": "Phoenix Suns", "Number": "35.0", "Position": "Power Forward (PF)", "Age": 30.0, "Height": 6.75, "Weight": 242.0, "College": "", "Salary": 5500000.0},
{"Name": "P.J. Tucker", "Team": "Phoenix Suns", "Number": "17.0", "Position": "Small Forward (SF)", "Age": 31.0, "Height": 6.5, "Weight": 245.0, "College": "Texas", "Salary": 5500000.0},
{"Name": "T.J. Warren", "Team": "Phoenix Suns", "Number": "12.0", "Position": "Small Forward (SF)", "Age": 22.0, "Height": 6.67, "Weight": 230.0, "College": "North Carolina State", "Salary": 2041080.0},
{"Name": "Alan Williams", "Team": "Phoenix Suns", "Number": "15.0", "Position": "Center (C)", "Age": 23.0, "Height": 6.67, "Weight": 260.0, "College": "UC Santa Barbara", "Salary": 83397.0},
{"Name": "Quincy Acy", "Team": "Sacramento Kings", "Number": "13.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.58, "Weight": 240.0, "College": "Baylor", "Salary": 981348.0},
{"Name": "James Anderson", "Team": "Sacramento Kings", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.5, "Weight": 213.0, "College": "Oklahoma State", "Salary": 1015421.0},
{"Name": "Marco Belinelli", "Team": "Sacramento Kings", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.42, "Weight": 210.0, "College": "", "Salary": 6060606.0},
{"Name": "Caron Butler", "Team": "Sacramento Kings", "Number": "31.0", "Position": "Small Forward (SF)", "Age": 36.0, "Height": 6.58, "Weight": 228.0, "College": "Connecticut", "Salary": 1449187.0},
{"Name": "Omri Casspi", "Team": "Sacramento Kings", "Number": "18.0", "Position": "Small Forward (SF)", "Age": 27.0, "Height": 6.75, "Weight": 225.0, "College": "", "Salary": 2836186.0},
{"Name": "Willie Cauley-Stein", "Team": "Sacramento Kings", "Number": "0.0", "Position": "Center (C)", "Age": 22.0, "Height": 7.0, "Weight": 240.0, "College": "Kentucky", "Salary": 3398280.0},
{"Name": "Darren Collison", "Team": "Sacramento Kings", "Number": "7.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 6.0, "Weight": 175.0, "College": "UCLA", "Salary": 5013559.0},
{"Name": "DeMarcus Cousins", "Team": "Sacramento Kings", "Number": "15.0", "Position": "Center (C)", "Age": 25.0, "Height": 6.92, "Weight": 270.0, "College": "Kentucky", "Salary": 15851950.0},
{"Name": "Seth Curry", "Team": "Sacramento Kings", "Number": "30.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.17, "Weight": 185.0, "College": "Duke", "Salary": 947276.0},
{"Name": "Duje Dukan", "Team": "Sacramento Kings", "Number": "26.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.75, "Weight": 220.0, "College": "Wisconsin", "Salary": 525093.0},
{"Name": "Rudy Gay", "Team": "Sacramento Kings", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.67, "Weight": 230.0, "College": "Connecticut", "Salary": 12403101.0},
{"Name": "Kosta Koufos", "Team": "Sacramento Kings", "Number": "41.0", "Position": "Center (C)", "Age": 27.0, "Height": 7.0, "Weight": 265.0, "College": "Ohio State", "Salary": 7700000.0},
{"Name": "Ben McLemore", "Team": "Sacramento Kings", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.42, "Weight": 195.0, "College": "Kansas", "Salary": 3156600.0},
{"Name": "Eric Moreland", "Team": "Sacramento Kings", "Number": "25.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.83, "Weight": 238.0, "College": "Oregon State", "Salary": 845059.0},
{"Name": "Rajon Rondo", "Team": "Sacramento Kings", "Number": "9.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.08, "Weight": 186.0, "College": "Kentucky", "Salary": 9500000.0},
{"Name": "Cameron Bairstow", "Team": "Chicago Bulls", "Number": "41.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.75, "Weight": 250.0, "College": "New Mexico", "Salary": 845059.0},
{"Name": "Aaron Brooks", "Team": "Chicago Bulls", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 31.0, "Height": 6.0, "Weight": 161.0, "College": "Oregon", "Salary": 2250000.0},
{"Name": "Jimmy Butler", "Team": "Chicago Bulls", "Number": "21.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.58, "Weight": 220.0, "College": "Marquette", "Salary": 16407500.0},
{"Name": "Mike Dunleavy", "Team": "Chicago Bulls", "Number": "34.0", "Position": "Shooting Guard (SG)", "Age": 35.0, "Height": 6.75, "Weight": 230.0, "College": "Duke", "Salary": 4500000.0},
{"Name": "Cristiano Felicio", "Team": "Chicago Bulls", "Number": "6.0", "Position": "Power Forward (PF)", "Age": 23.0, "Height": 6.83, "Weight": 275.0, "College": "", "Salary": 525093.0},
{"Name": "Pau Gasol", "Team": "Chicago Bulls", "Number": "16.0", "Position": "Center (C)", "Age": 35.0, "Height": 7.0, "Weight": 250.0, "College": "", "Salary": 7448760.0},
{"Name": "Taj Gibson", "Team": "Chicago Bulls", "Number": "22.0", "Position": "Power Forward (PF)", "Age": 30.0, "Height": 6.75, "Weight": 225.0, "College": "USC", "Salary": 8500000.0},
{"Name": "Justin Holiday", "Team": "Chicago Bulls", "Number": "7.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.5, "Weight": 185.0, "College": "Washington", "Salary": 947276.0},
{"Name": "Doug McDermott", "Team": "Chicago Bulls", "Number": "3.0", "Position": "Small Forward (SF)", "Age": 24.0, "Height": 6.67, "Weight": 225.0, "College": "Creighton", "Salary": 2380440.0},
{"Name": "Nikola Mirotic", "Team": "Chicago Bulls", "Number": "44.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.83, "Weight": 220.0, "College": "", "Salary": 5543725.0},
{"Name": "E'Twaun Moore", "Team": "Chicago Bulls", "Number": "55.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.33, "Weight": 191.0, "College": "Purdue", "Salary": 1015421.0},
{"Name": "Joakim Noah", "Team": "Chicago Bulls", "Number": "13.0", "Position": "Center (C)", "Age": 31.0, "Height": 6.92, "Weight": 232.0, "College": "Florida", "Salary": 13400000.0},
{"Name": "Bobby Portis", "Team": "Chicago Bulls", "Number": "5.0", "Position": "Power Forward (PF)", "Age": 21.0, "Height": 6.92, "Weight": 230.0, "College": "Arkansas", "Salary": 1391160.0},
{"Name": "Derrick Rose", "Team": "Chicago Bulls", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 190.0, "College": "Memphis", "Salary": 20093064.0},
{"Name": "Tony Snell", "Team": "Chicago Bulls", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 24.0, "Height": 6.58, "Weight": 200.0, "College": "New Mexico", "Salary": 1535880.0},
{"Name": "Matthew Dellavedova", "Team": "Cleveland Cavaliers", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.33, "Weight": 198.0, "College": "Saint Mary's", "Salary": 1147276.0},
{"Name": "Channing Frye", "Team": "Cleveland Cavaliers", "Number": "9.0", "Position": "Power Forward (PF)", "Age": 33.0, "Height": 6.92, "Weight": 255.0, "College": "Arizona", "Salary": 8193029.0},
{"Name": "Kyrie Irving", "Team": "Cleveland Cavaliers", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.25, "Weight": 193.0, "College": "Duke", "Salary": 16407501.0},
{"Name": "LeBron James", "Team": "Cleveland Cavaliers", "Number": "23.0", "Position": "Small Forward (SF)", "Age": 31.0, "Height": 6.67, "Weight": 250.0, "College": "", "Salary": 22970500.0},
{"Name": "Richard Jefferson", "Team": "Cleveland Cavaliers", "Number": "24.0", "Position": "Small Forward (SF)", "Age": 35.0, "Height": 6.58, "Weight": 233.0, "College": "Arizona", "Salary": 947276.0},
{"Name": "Dahntay Jones", "Team": "Cleveland Cavaliers", "Number": "30.0", "Position": "Shooting Guard (SG)", "Age": 35.0, "Height": 6.5, "Weight": 225.0, "College": "Duke", "Salary": 0},
{"Name": "James Jones", "Team": "Cleveland Cavaliers", "Number": "1.0", "Position": "Shooting Guard (SG)", "Age": 35.0, "Height": 6.67, "Weight": 218.0, "College": "Miami (FL)", "Salary": 947276.0},
{"Name": "Sasha Kaun", "Team": "Cleveland Cavaliers", "Number": "14.0", "Position": "Center (C)", "Age": 31.0, "Height": 6.92, "Weight": 260.0, "College": "Kansas", "Salary": 1276000.0},
{"Name": "Kevin Love", "Team": "Cleveland Cavaliers", "Number": "0.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.83, "Weight": 251.0, "College": "UCLA", "Salary": 19689000.0},
{"Name": "Jordan McRae", "Team": "Cleveland Cavaliers", "Number": "12.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.42, "Weight": 179.0, "College": "Tennessee", "Salary": 111196.0},
{"Name": "Timofey Mozgov", "Team": "Cleveland Cavaliers", "Number": "20.0", "Position": "Center (C)", "Age": 29.0, "Height": 7.08, "Weight": 275.0, "College": "", "Salary": 4950000.0},
{"Name": "Iman Shumpert", "Team": "Cleveland Cavaliers", "Number": "4.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.42, "Weight": 220.0, "College": "Georgia Tech", "Salary": 8988765.0},
{"Name": "J.R. Smith", "Team": "Cleveland Cavaliers", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.5, "Weight": 225.0, "College": "", "Salary": 5000000.0},
{"Name": "Tristan Thompson", "Team": "Cleveland Cavaliers", "Number": "13.0", "Position": "Center (C)", "Age": 25.0, "Height": 6.75, "Weight": 238.0, "College": "Texas", "Salary": 14260870.0},
{"Name": "Mo Williams", "Team": "Cleveland Cavaliers", "Number": "52.0", "Position": "Point Guard (PG)", "Age": 33.0, "Height": 6.08, "Weight": 198.0, "College": "Alabama", "Salary": 2100000.0},
{"Name": "Joel Anthony", "Team": "Detroit Pistons", "Number": "50.0", "Position": "Center (C)", "Age": 33.0, "Height": 6.75, "Weight": 245.0, "College": "UNLV", "Salary": 2500000.0},
{"Name": "Aron Baynes", "Team": "Detroit Pistons", "Number": "12.0", "Position": "Center (C)", "Age": 29.0, "Height": 6.83, "Weight": 260.0, "College": "Washington State", "Salary": 6500000.0},
{"Name": "Steve Blake", "Team": "Detroit Pistons", "Number": "22.0", "Position": "Point Guard (PG)", "Age": 36.0, "Height": 6.25, "Weight": 172.0, "College": "Maryland", "Salary": 2170465.0},
{"Name": "Lorenzo Brown", "Team": "Detroit Pistons", "Number": "17.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.42, "Weight": 189.0, "College": "North Carolina State", "Salary": 111444.0},
{"Name": "Reggie Bullock", "Team": "Detroit Pistons", "Number": "25.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.58, "Weight": 205.0, "College": "North Carolina", "Salary": 1252440.0},
{"Name": "Kentavious Caldwell-Pope", "Team": "Detroit Pistons", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.42, "Weight": 205.0, "College": "Georgia", "Salary": 2891760.0},
{"Name": "Spencer Dinwiddie", "Team": "Detroit Pistons", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.5, "Weight": 200.0, "College": "Colorado", "Salary": 845059.0},
{"Name": "Andre Drummond", "Team": "Detroit Pistons", "Number": "0.0", "Position": "Center (C)", "Age": 22.0, "Height": 6.92, "Weight": 279.0, "College": "Connecticut", "Salary": 3272091.0},
{"Name": "Tobias Harris", "Team": "Detroit Pistons", "Number": "34.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.75, "Weight": 235.0, "College": "Tennessee", "Salary": 16000000.0},
{"Name": "Darrun Hilliard", "Team": "Detroit Pistons", "Number": "6.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.5, "Weight": 205.0, "College": "Villanova", "Salary": 600000.0},
{"Name": "Reggie Jackson", "Team": "Detroit Pistons", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 26.0, "Height": 6.25, "Weight": 208.0, "College": "Boston College", "Salary": 13913044.0},
{"Name": "Stanley Johnson", "Team": "Detroit Pistons", "Number": "3.0", "Position": "Small Forward (SF)", "Age": 20.0, "Height": 6.58, "Weight": 245.0, "College": "Arizona", "Salary": 2841960.0},
{"Name": "Jodie Meeks", "Team": "Detroit Pistons", "Number": "20.0", "Position": "Shooting Guard (SG)", "Age": 28.0, "Height": 6.33, "Weight": 210.0, "College": "Kentucky", "Salary": 6270000.0},
{"Name": "Marcus Morris", "Team": "Detroit Pistons", "Number": "13.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.75, "Weight": 235.0, "College": "Kansas", "Salary": 5000000.0},
{"Name": "Anthony Tolliver", "Team": "Detroit Pistons", "Number": "43.0", "Position": "Power Forward (PF)", "Age": 31.0, "Height": 6.67, "Weight": 240.0, "College": "Creighton", "Salary": 3000000.0},
{"Name": "Lavoy Allen", "Team": "Indiana Pacers", "Number": "5.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.75, "Weight": 255.0, "College": "Temple", "Salary": 4050000.0},
{"Name": "Rakeem Christmas", "Team": "Indiana Pacers", "Number": "25.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.75, "Weight": 250.0, "College": "Syracuse", "Salary": 1007026.0},
{"Name": "Monta Ellis", "Team": "Indiana Pacers", "Number": "11.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.25, "Weight": 185.0, "College": "", "Salary": 10300000.0},
{"Name": "Paul George", "Team": "Indiana Pacers", "Number": "13.0", "Position": "Small Forward (SF)", "Age": 26.0, "Height": 6.75, "Weight": 220.0, "College": "Fresno State", "Salary": 17120106.0},
{"Name": "George Hill", "Team": "Indiana Pacers", "Number": "3.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.25, "Weight": 188.0, "College": "IUPUI", "Salary": 8000000.0},
{"Name": "Jordan Hill", "Team": "Indiana Pacers", "Number": "27.0", "Position": "Center (C)", "Age": 28.0, "Height": 6.83, "Weight": 235.0, "College": "Arizona", "Salary": 4000000.0},
{"Name": "Solomon Hill", "Team": "Indiana Pacers", "Number": "44.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.58, "Weight": 225.0, "College": "Arizona", "Salary": 1358880.0},
{"Name": "Ty Lawson", "Team": "Indiana Pacers", "Number": "10.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 5.92, "Weight": 195.0, "College": "North Carolina", "Salary": 211744.0},
{"Name": "Ian Mahinmi", "Team": "Indiana Pacers", "Number": "28.0", "Position": "Center (C)", "Age": 29.0, "Height": 6.92, "Weight": 250.0, "College": "", "Salary": 4000000.0},
{"Name": "C.J. Miles", "Team": "Indiana Pacers", "Number": "0.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.5, "Weight": 231.0, "College": "", "Salary": 4394225.0},
{"Name": "Glenn Robinson III", "Team": "Indiana Pacers", "Number": "40.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.58, "Weight": 222.0, "College": "Michigan", "Salary": 1100000.0},
{"Name": "Rodney Stuckey", "Team": "Indiana Pacers", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.42, "Weight": 205.0, "College": "Eastern Washington", "Salary": 7000000.0},
{"Name": "Myles Turner", "Team": "Indiana Pacers", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.92, "Weight": 243.0, "College": "Texas", "Salary": 2357760.0},
{"Name": "Shayne Whittington", "Team": "Indiana Pacers", "Number": "42.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.92, "Weight": 250.0, "College": "Western Michigan", "Salary": 845059.0},
{"Name": "Joe Young", "Team": "Indiana Pacers", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.17, "Weight": 180.0, "College": "Oregon", "Salary": 1007026.0},
{"Name": "Giannis Antetokounmpo", "Team": "Milwaukee Bucks", "Number": "34.0", "Position": "Small Forward (SF)", "Age": 21.0, "Height": 6.92, "Weight": 222.0, "College": "", "Salary": 1953960.0},
{"Name": "Jerryd Bayless", "Team": "Milwaukee Bucks", "Number": "19.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 200.0, "College": "Arizona", "Salary": 3000000.0},
{"Name": "Michael Carter-Williams", "Team": "Milwaukee Bucks", "Number": "5.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.5, "Weight": 190.0, "College": "Syracuse", "Salary": 2399040.0},
{"Name": "Jared Cunningham", "Team": "Milwaukee Bucks", "Number": "9.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.33, "Weight": 195.0, "College": "Oregon State", "Salary": 947276.0},
{"Name": "Tyler Ennis", "Team": "Milwaukee Bucks", "Number": "11.0", "Position": "Point Guard (PG)", "Age": 21.0, "Height": 6.25, "Weight": 194.0, "College": "Syracuse", "Salary": 1662360.0},
{"Name": "John Henson", "Team": "Milwaukee Bucks", "Number": "31.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.92, "Weight": 229.0, "College": "North Carolina", "Salary": 2943221.0},
{"Name": "Damien Inglis", "Team": "Milwaukee Bucks", "Number": "17.0", "Position": "Small Forward (SF)", "Age": 21.0, "Height": 6.67, "Weight": 246.0, "College": "", "Salary": 855000.0},
{"Name": "O.J. Mayo", "Team": "Milwaukee Bucks", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 28.0, "Height": 6.42, "Weight": 210.0, "College": "USC", "Salary": 8000000.0},
{"Name": "Khris Middleton", "Team": "Milwaukee Bucks", "Number": "22.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.67, "Weight": 234.0, "College": "Texas A&M", "Salary": 14700000.0},
{"Name": "Greg Monroe", "Team": "Milwaukee Bucks", "Number": "15.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.92, "Weight": 265.0, "College": "Georgetown", "Salary": 16407500.0},
{"Name": "Steve Novak", "Team": "Milwaukee Bucks", "Number": "6.0", "Position": "Small Forward (SF)", "Age": 32.0, "Height": 6.83, "Weight": 225.0, "College": "Marquette", "Salary": 295327.0},
{"Name": "Johnny O'Bryant III", "Team": "Milwaukee Bucks", "Number": "77.0", "Position": "Power Forward (PF)", "Age": 23.0, "Height": 6.75, "Weight": 257.0, "College": "LSU", "Salary": 845059.0},
{"Name": "Jabari Parker", "Team": "Milwaukee Bucks", "Number": "12.0", "Position": "Power Forward (PF)", "Age": 21.0, "Height": 6.67, "Weight": 250.0, "College": "Duke", "Salary": 5152440.0},
{"Name": "Miles Plumlee", "Team": "Milwaukee Bucks", "Number": "18.0", "Position": "Center (C)", "Age": 27.0, "Height": 6.92, "Weight": 249.0, "College": "Duke", "Salary": 2109294.0},
{"Name": "Greivis Vasquez", "Team": "Milwaukee Bucks", "Number": "21.0", "Position": "Point Guard (PG)", "Age": 29.0, "Height": 6.5, "Weight": 217.0, "College": "Maryland", "Salary": 6600000.0},
{"Name": "Rashad Vaughn", "Team": "Milwaukee Bucks", "Number": "20.0", "Position": "Shooting Guard (SG)", "Age": 19.0, "Height": 6.5, "Weight": 202.0, "College": "UNLV", "Salary": 1733040.0},
{"Name": "Justin Anderson", "Team": "Dallas Mavericks", "Number": "1.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.5, "Weight": 228.0, "College": "Virginia", "Salary": 1449000.0},
{"Name": "J.J. Barea", "Team": "Dallas Mavericks", "Number": "5.0", "Position": "Point Guard (PG)", "Age": 31.0, "Height": 6.0, "Weight": 185.0, "College": "Northeastern", "Salary": 4290000.0},
{"Name": "Jeremy Evans", "Team": "Dallas Mavericks", "Number": "21.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.75, "Weight": 200.0, "College": "Western Kentucky", "Salary": 1100602.0},
{"Name": "Raymond Felton", "Team": "Dallas Mavericks", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 31.0, "Height": 6.08, "Weight": 205.0, "College": "North Carolina", "Salary": 3950313.0},
{"Name": "Devin Harris", "Team": "Dallas Mavericks", "Number": "34.0", "Position": "Point Guard (PG)", "Age": 33.0, "Height": 6.25, "Weight": 185.0, "College": "Wisconsin", "Salary": 4053446.0},
{"Name": "David Lee", "Team": "Dallas Mavericks", "Number": "42.0", "Position": "Power Forward (PF)", "Age": 33.0, "Height": 6.75, "Weight": 245.0, "College": "Florida", "Salary": 2085671.0},
{"Name": "Wesley Matthews", "Team": "Dallas Mavericks", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 29.0, "Height": 6.42, "Weight": 220.0, "College": "Marquette", "Salary": 16407500.0},
{"Name": "JaVale McGee", "Team": "Dallas Mavericks", "Number": "11.0", "Position": "Center (C)", "Age": 28.0, "Height": 7.0, "Weight": 270.0, "College": "Nevada", "Salary": 1270964.0},
{"Name": "Salah Mejri", "Team": "Dallas Mavericks", "Number": "50.0", "Position": "Center (C)", "Age": 29.0, "Height": 7.17, "Weight": 245.0, "College": "", "Salary": 525093.0},
{"Name": "Dirk Nowitzki", "Team": "Dallas Mavericks", "Number": "41.0", "Position": "Power Forward (PF)", "Age": 37.0, "Height": 7.0, "Weight": 245.0, "College": "", "Salary": 8333334.0},
{"Name": "Zaza Pachulia", "Team": "Dallas Mavericks", "Number": "27.0", "Position": "Center (C)", "Age": 32.0, "Height": 6.92, "Weight": 275.0, "College": "", "Salary": 5200000.0},
{"Name": "Chandler Parsons", "Team": "Dallas Mavericks", "Number": "25.0", "Position": "Small Forward (SF)", "Age": 27.0, "Height": 6.83, "Weight": 230.0, "College": "Florida", "Salary": 15361500.0},
{"Name": "Dwight Powell", "Team": "Dallas Mavericks", "Number": "7.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.92, "Weight": 240.0, "College": "Stanford", "Salary": 845059.0},
{"Name": "Charlie Villanueva", "Team": "Dallas Mavericks", "Number": "3.0", "Position": "Power Forward (PF)", "Age": 31.0, "Height": 6.92, "Weight": 232.0, "College": "Connecticut", "Salary": 947276.0},
{"Name": "Deron Williams", "Team": "Dallas Mavericks", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 31.0, "Height": 6.25, "Weight": 200.0, "College": "Illinois", "Salary": 5378974.0},
{"Name": "Trevor Ariza", "Team": "Houston Rockets", "Number": "1.0", "Position": "Small Forward (SF)", "Age": 30.0, "Height": 6.67, "Weight": 215.0, "College": "UCLA", "Salary": 8193030.0},
{"Name": "Michael Beasley", "Team": "Houston Rockets", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 27.0, "Height": 6.83, "Weight": 235.0, "College": "Kansas State", "Salary": 306527.0},
{"Name": "Patrick Beverley", "Team": "Houston Rockets", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.08, "Weight": 185.0, "College": "Arkansas", "Salary": 6486486.0},
{"Name": "Corey Brewer", "Team": "Houston Rockets", "Number": "33.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.75, "Weight": 186.0, "College": "Florida", "Salary": 8229375.0},
{"Name": "Clint Capela", "Team": "Houston Rockets", "Number": "15.0", "Position": "Power Forward (PF)", "Age": 22.0, "Height": 6.83, "Weight": 240.0, "College": "", "Salary": 1242720.0},
{"Name": "Sam Dekker", "Team": "Houston Rockets", "Number": "7.0", "Position": "Small Forward (SF)", "Age": 22.0, "Height": 6.75, "Weight": 230.0, "College": "Wisconsin", "Salary": 1646400.0},
{"Name": "Andrew Goudelock", "Team": "Houston Rockets", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 200.0, "College": "Charleston", "Salary": 200600.0},
{"Name": "James Harden", "Team": "Houston Rockets", "Number": "13.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.42, "Weight": 220.0, "College": "Arizona State", "Salary": 15756438.0},
{"Name": "Montrezl Harrell", "Team": "Houston Rockets", "Number": "35.0", "Position": "Power Forward (PF)", "Age": 22.0, "Height": 6.67, "Weight": 240.0, "College": "Louisville", "Salary": 1000000.0},
{"Name": "Dwight Howard", "Team": "Houston Rockets", "Number": "12.0", "Position": "Center (C)", "Age": 30.0, "Height": 6.92, "Weight": 265.0, "College": "", "Salary": 22359364.0},
{"Name": "Terrence Jones", "Team": "Houston Rockets", "Number": "6.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.75, "Weight": 252.0, "College": "Kentucky", "Salary": 2489530.0},
{"Name": "K.J. McDaniels", "Team": "Houston Rockets", "Number": "32.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.5, "Weight": 205.0, "College": "Clemson", "Salary": 3189794.0},
{"Name": "Donatas Motiejunas", "Team": "Houston Rockets", "Number": "20.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 7.0, "Weight": 222.0, "College": "", "Salary": 2288205.0},
{"Name": "Josh Smith", "Team": "Houston Rockets", "Number": "5.0", "Position": "Center (C)", "Age": 30.0, "Height": 6.75, "Weight": 225.0, "College": "", "Salary": 947276.0},
{"Name": "Jason Terry", "Team": "Houston Rockets", "Number": "31.0", "Position": "Shooting Guard (SG)", "Age": 38.0, "Height": 6.17, "Weight": 185.0, "College": "Arizona", "Salary": 947276.0},
{"Name": "Jordan Adams", "Team": "Memphis Grizzlies", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.42, "Weight": 209.0, "College": "UCLA", "Salary": 1404600.0},
{"Name": "Tony Allen", "Team": "Memphis Grizzlies", "Number": "9.0", "Position": "Shooting Guard (SG)", "Age": 34.0, "Height": 6.33, "Weight": 213.0, "College": "Oklahoma State", "Salary": 5158539.0},
{"Name": "Chris Andersen", "Team": "Memphis Grizzlies", "Number": "7.0", "Position": "Power Forward (PF)", "Age": 37.0, "Height": 6.83, "Weight": 245.0, "College": "Blinn College", "Salary": 5000000.0},
{"Name": "Matt Barnes", "Team": "Memphis Grizzlies", "Number": "22.0", "Position": "Small Forward (SF)", "Age": 36.0, "Height": 6.58, "Weight": 226.0, "College": "UCLA", "Salary": 3542500.0},
{"Name": "Vince Carter", "Team": "Memphis Grizzlies", "Number": "15.0", "Position": "Shooting Guard (SG)", "Age": 39.0, "Height": 6.5, "Weight": 220.0, "College": "North Carolina", "Salary": 4088019.0},
{"Name": "Mike Conley", "Team": "Memphis Grizzlies", "Number": "11.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 6.08, "Weight": 175.0, "College": "Ohio State", "Salary": 9588426.0},
{"Name": "Bryce Cotton", "Team": "Memphis Grizzlies", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.08, "Weight": 165.0, "College": "Providence", "Salary": 700902.0},
{"Name": "Jordan Farmar", "Team": "Memphis Grizzlies", "Number": "4.0", "Position": "Point Guard (PG)", "Age": 29.0, "Height": 6.17, "Weight": 180.0, "College": "UCLA", "Salary": 0},
{"Name": "Marc Gasol", "Team": "Memphis Grizzlies", "Number": "33.0", "Position": "Center (C)", "Age": 31.0, "Height": 7.08, "Weight": 255.0, "College": "", "Salary": 19688000.0},
{"Name": "JaMychal Green", "Team": "Memphis Grizzlies", "Number": "0.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.75, "Weight": 227.0, "College": "Alabama", "Salary": 845059.0},
{"Name": "P.J. Hairston", "Team": "Memphis Grizzlies", "Number": "19.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.5, "Weight": 230.0, "College": "North Carolina", "Salary": 1201440.0},
{"Name": "Jarell Martin", "Team": "Memphis Grizzlies", "Number": "10.0", "Position": "Power Forward (PF)", "Age": 22.0, "Height": 6.83, "Weight": 239.0, "College": "LSU", "Salary": 1230840.0},
{"Name": "Ray McCallum", "Team": "Memphis Grizzlies", "Number": "5.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.25, "Weight": 190.0, "College": "Detroit", "Salary": 0},
{"Name": "Xavier Munford", "Team": "Memphis Grizzlies", "Number": "14.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.25, "Weight": 180.0, "College": "Rhode Island", "Salary": 0},
{"Name": "Zach Randolph", "Team": "Memphis Grizzlies", "Number": "50.0", "Position": "Power Forward (PF)", "Age": 34.0, "Height": 6.75, "Weight": 260.0, "College": "Michigan State", "Salary": 9638555.0},
{"Name": "Lance Stephenson", "Team": "Memphis Grizzlies", "Number": "1.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.42, "Weight": 230.0, "College": "Cincinnati", "Salary": 9000000.0},
{"Name": "Alex Stepheson", "Team": "Memphis Grizzlies", "Number": "35.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.83, "Weight": 270.0, "College": "USC", "Salary": 0},
{"Name": "Brandan Wright", "Team": "Memphis Grizzlies", "Number": "34.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.83, "Weight": 210.0, "College": "North Carolina", "Salary": 5464000.0},
{"Name": "Alexis Ajinca", "Team": "New Orleans Pelicans", "Number": "42.0", "Position": "Center (C)", "Age": 28.0, "Height": 7.17, "Weight": 248.0, "College": "", "Salary": 4389607.0},
{"Name": "Ryan Anderson", "Team": "New Orleans Pelicans", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.83, "Weight": 240.0, "College": "California", "Salary": 8500000.0},
{"Name": "Omer Asik", "Team": "New Orleans Pelicans", "Number": "3.0", "Position": "Center (C)", "Age": 29.0, "Height": 7.0, "Weight": 255.0, "College": "", "Salary": 9213483.0},
{"Name": "Luke Babbitt", "Team": "New Orleans Pelicans", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 26.0, "Height": 6.75, "Weight": 225.0, "College": "Nevada", "Salary": 1100602.0},
{"Name": "Norris Cole", "Team": "New Orleans Pelicans", "Number": "30.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.17, "Weight": 175.0, "College": "Cleveland State", "Salary": 3036927.0},
{"Name": "Dante Cunningham", "Team": "New Orleans Pelicans", "Number": "44.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.67, "Weight": 230.0, "College": "Villanova", "Salary": 2850000.0},
{"Name": "Anthony Davis", "Team": "New Orleans Pelicans", "Number": "23.0", "Position": "Power Forward (PF)", "Age": 23.0, "Height": 6.83, "Weight": 253.0, "College": "Kentucky", "Salary": 7070730.0},
{"Name": "Bryce Dejean-Jones", "Team": "New Orleans Pelicans", "Number": "31.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.5, "Weight": 203.0, "College": "Iowa State", "Salary": 169883.0},
{"Name": "Toney Douglas", "Team": "New Orleans Pelicans", "Number": "16.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.17, "Weight": 195.0, "College": "Florida State", "Salary": 1164858.0},
{"Name": "James Ennis", "Team": "New Orleans Pelicans", "Number": "4.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.58, "Weight": 210.0, "College": "Long Beach State", "Salary": 845059.0},
{"Name": "Tyreke Evans", "Team": "New Orleans Pelicans", "Number": "1.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.5, "Weight": 220.0, "College": "Memphis", "Salary": 10734586.0},
{"Name": "Tim Frazier", "Team": "New Orleans Pelicans", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.08, "Weight": 170.0, "College": "Penn State", "Salary": 845059.0},
{"Name": "Alonzo Gee", "Team": "New Orleans Pelicans", "Number": "15.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.5, "Weight": 225.0, "College": "Alabama", "Salary": 1320000.0},
{"Name": "Eric Gordon", "Team": "New Orleans Pelicans", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.33, "Weight": 215.0, "College": "Indiana", "Salary": 15514031.0},
{"Name": "Jordan Hamilton", "Team": "New Orleans Pelicans", "Number": "25.0", "Position": "Shooting Guard (SG)", "Age": 25.0, "Height": 6.58, "Weight": 220.0, "College": "Texas", "Salary": 1015421.0},
{"Name": "Jrue Holiday", "Team": "New Orleans Pelicans", "Number": "11.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.33, "Weight": 205.0, "College": "UCLA", "Salary": 10595507.0},
{"Name": "Orlando Johnson", "Team": "New Orleans Pelicans", "Number": "0.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.42, "Weight": 220.0, "College": "UC Santa Barbara", "Salary": 55722.0},
{"Name": "Kendrick Perkins", "Team": "New Orleans Pelicans", "Number": "5.0", "Position": "Center (C)", "Age": 31.0, "Height": 6.83, "Weight": 270.0, "College": "", "Salary": 947276.0},
{"Name": "Quincy Pondexter", "Team": "New Orleans Pelicans", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.58, "Weight": 220.0, "College": "Washington", "Salary": 3382023.0},
{"Name": "LaMarcus Aldridge", "Team": "San Antonio Spurs", "Number": "12.0", "Position": "Power Forward (PF)", "Age": 30.0, "Height": 6.92, "Weight": 240.0, "College": "Texas", "Salary": 19689000.0},
{"Name": "Kyle Anderson", "Team": "San Antonio Spurs", "Number": "1.0", "Position": "Small Forward (SF)", "Age": 22.0, "Height": 6.75, "Weight": 230.0, "College": "UCLA", "Salary": 1142880.0},
{"Name": "Matt Bonner", "Team": "San Antonio Spurs", "Number": "15.0", "Position": "Center (C)", "Age": 36.0, "Height": 6.83, "Weight": 235.0, "College": "Florida", "Salary": 947276.0},
{"Name": "Boris Diaw", "Team": "San Antonio Spurs", "Number": "33.0", "Position": "Center (C)", "Age": 34.0, "Height": 6.67, "Weight": 250.0, "College": "", "Salary": 7500000.0},
{"Name": "Tim Duncan", "Team": "San Antonio Spurs", "Number": "21.0", "Position": "Center (C)", "Age": 40.0, "Height": 6.92, "Weight": 250.0, "College": "Wake Forest", "Salary": 5250000.0},
{"Name": "Manu Ginobili", "Team": "San Antonio Spurs", "Number": "20.0", "Position": "Shooting Guard (SG)", "Age": 38.0, "Height": 6.5, "Weight": 205.0, "College": "", "Salary": 2814000.0},
{"Name": "Danny Green", "Team": "San Antonio Spurs", "Number": "14.0", "Position": "Shooting Guard (SG)", "Age": 28.0, "Height": 6.5, "Weight": 215.0, "College": "North Carolina", "Salary": 10000000.0},
{"Name": "Kawhi Leonard", "Team": "San Antonio Spurs", "Number": "2.0", "Position": "Small Forward (SF)", "Age": 24.0, "Height": 6.58, "Weight": 230.0, "College": "San Diego State", "Salary": 16407500.0},
{"Name": "Boban Marjanovic", "Team": "San Antonio Spurs", "Number": "40.0", "Position": "Center (C)", "Age": 27.0, "Height": 7.25, "Weight": 290.0, "College": "", "Salary": 1200000.0},
{"Name": "Kevin Martin", "Team": "San Antonio Spurs", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 33.0, "Height": 6.58, "Weight": 199.0, "College": "Western Carolina", "Salary": 200600.0},
{"Name": "Andre Miller", "Team": "San Antonio Spurs", "Number": "24.0", "Position": "Point Guard (PG)", "Age": 40.0, "Height": 6.25, "Weight": 200.0, "College": "Utah", "Salary": 250750.0},
{"Name": "Patty Mills", "Team": "San Antonio Spurs", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.0, "Weight": 185.0, "College": "Saint Mary's", "Salary": 3578947.0},
{"Name": "Tony Parker", "Team": "San Antonio Spurs", "Number": "9.0", "Position": "Point Guard (PG)", "Age": 34.0, "Height": 6.17, "Weight": 185.0, "College": "", "Salary": 13437500.0},
{"Name": "Jonathon Simmons", "Team": "San Antonio Spurs", "Number": "17.0", "Position": "Shooting Guard (SG)", "Age": 26.0, "Height": 6.5, "Weight": 195.0, "College": "Houston", "Salary": 525093.0},
{"Name": "David West", "Team": "San Antonio Spurs", "Number": "30.0", "Position": "Power Forward (PF)", "Age": 35.0, "Height": 6.75, "Weight": 250.0, "College": "Xavier", "Salary": 1499187.0},
{"Name": "Kent Bazemore", "Team": "Atlanta Hawks", "Number": "24.0", "Position": "Small Forward (SF)", "Age": 26.0, "Height": 6.42, "Weight": 201.0, "College": "Old Dominion", "Salary": 2000000.0},
{"Name": "Tim Hardaway Jr.", "Team": "Atlanta Hawks", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.5, "Weight": 205.0, "College": "Michigan", "Salary": 1304520.0},
{"Name": "Kirk Hinrich", "Team": "Atlanta Hawks", "Number": "12.0", "Position": "Shooting Guard (SG)", "Age": 35.0, "Height": 6.33, "Weight": 190.0, "College": "Kansas", "Salary": 2854940.0},
{"Name": "Al Horford", "Team": "Atlanta Hawks", "Number": "15.0", "Position": "Center (C)", "Age": 30.0, "Height": 6.83, "Weight": 245.0, "College": "Florida", "Salary": 12000000.0},
{"Name": "Kris Humphries", "Team": "Atlanta Hawks", "Number": "43.0", "Position": "Power Forward (PF)", "Age": 31.0, "Height": 6.75, "Weight": 235.0, "College": "Minnesota", "Salary": 1000000.0},
{"Name": "Kyle Korver", "Team": "Atlanta Hawks", "Number": "26.0", "Position": "Shooting Guard (SG)", "Age": 35.0, "Height": 6.58, "Weight": 212.0, "College": "Creighton", "Salary": 5746479.0},
{"Name": "Paul Millsap", "Team": "Atlanta Hawks", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 31.0, "Height": 6.67, "Weight": 246.0, "College": "Louisiana Tech", "Salary": 18671659.0},
{"Name": "Mike Muscala", "Team": "Atlanta Hawks", "Number": "31.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.92, "Weight": 240.0, "College": "Bucknell", "Salary": 947276.0},
{"Name": "Lamar Patterson", "Team": "Atlanta Hawks", "Number": "13.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.42, "Weight": 225.0, "College": "Pittsburgh", "Salary": 525093.0},
{"Name": "Dennis Schroder", "Team": "Atlanta Hawks", "Number": "17.0", "Position": "Point Guard (PG)", "Age": 22.0, "Height": 6.08, "Weight": 172.0, "College": "", "Salary": 1763400.0},
{"Name": "Mike Scott", "Team": "Atlanta Hawks", "Number": "32.0", "Position": "Power Forward (PF)", "Age": 27.0, "Height": 6.67, "Weight": 237.0, "College": "Virginia", "Salary": 3333333.0},
{"Name": "Thabo Sefolosha", "Team": "Atlanta Hawks", "Number": "25.0", "Position": "Small Forward (SF)", "Age": 32.0, "Height": 6.58, "Weight": 220.0, "College": "", "Salary": 4000000.0},
{"Name": "Tiago Splitter", "Team": "Atlanta Hawks", "Number": "11.0", "Position": "Center (C)", "Age": 31.0, "Height": 6.92, "Weight": 245.0, "College": "", "Salary": 9756250.0},
{"Name": "Walter Tavares", "Team": "Atlanta Hawks", "Number": "22.0", "Position": "Center (C)", "Age": 24.0, "Height": 7.25, "Weight": 260.0, "College": "", "Salary": 1000000.0},
{"Name": "Jeff Teague", "Team": "Atlanta Hawks", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.17, "Weight": 186.0, "College": "Wake Forest", "Salary": 8000000.0},
{"Name": "Nicolas Batum", "Team": "Charlotte Hornets", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 27.0, "Height": 6.67, "Weight": 200.0, "College": "", "Salary": 13125306.0},
{"Name": "Troy Daniels", "Team": "Charlotte Hornets", "Number": "30.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.33, "Weight": 205.0, "College": "Virginia Commonwealth", "Salary": 947276.0},
{"Name": "Jorge Gutierrez", "Team": "Charlotte Hornets", "Number": "12.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 189.0, "College": "California", "Salary": 189455.0},
{"Name": "Tyler Hansbrough", "Team": "Charlotte Hornets", "Number": "50.0", "Position": "Power Forward (PF)", "Age": 30.0, "Height": 6.75, "Weight": 250.0, "College": "North Carolina", "Salary": 947276.0},
{"Name": "Aaron Harrison", "Team": "Charlotte Hornets", "Number": "9.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.5, "Weight": 210.0, "College": "Kentucky", "Salary": 525093.0},
{"Name": "Spencer Hawes", "Team": "Charlotte Hornets", "Number": "0.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 7.08, "Weight": 245.0, "College": "Washington", "Salary": 6110034.0},
{"Name": "Al Jefferson", "Team": "Charlotte Hornets", "Number": "25.0", "Position": "Center (C)", "Age": 31.0, "Height": 6.83, "Weight": 289.0, "College": "", "Salary": 13500000.0},
{"Name": "Frank Kaminsky III", "Team": "Charlotte Hornets", "Number": "44.0", "Position": "Center (C)", "Age": 23.0, "Height": 7.0, "Weight": 240.0, "College": "Wisconsin", "Salary": 2612520.0},
{"Name": "Michael Kidd-Gilchrist", "Team": "Charlotte Hornets", "Number": "14.0", "Position": "Small Forward (SF)", "Age": 22.0, "Height": 6.58, "Weight": 232.0, "College": "Kentucky", "Salary": 6331404.0},
{"Name": "Jeremy Lamb", "Team": "Charlotte Hornets", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.42, "Weight": 185.0, "College": "Connecticut", "Salary": 3034356.0},
{"Name": "Courtney Lee", "Team": "Charlotte Hornets", "Number": "1.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.42, "Weight": 200.0, "College": "Western Kentucky", "Salary": 5675000.0},
{"Name": "Jeremy Lin", "Team": "Charlotte Hornets", "Number": "7.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 200.0, "College": "Harvard", "Salary": 2139000.0},
{"Name": "Kemba Walker", "Team": "Charlotte Hornets", "Number": "15.0", "Position": "Point Guard (PG)", "Age": 26.0, "Height": 6.08, "Weight": 184.0, "College": "Connecticut", "Salary": 12000000.0},
{"Name": "Marvin Williams", "Team": "Charlotte Hornets", "Number": "2.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.75, "Weight": 237.0, "College": "North Carolina", "Salary": 7000000.0},
{"Name": "Cody Zeller", "Team": "Charlotte Hornets", "Number": "40.0", "Position": "Center (C)", "Age": 23.0, "Height": 7.0, "Weight": 240.0, "College": "Indiana", "Salary": 4204200.0},
{"Name": "Chris Bosh", "Team": "Miami Heat", "Number": "1.0", "Position": "Power Forward (PF)", "Age": 32.0, "Height": 6.92, "Weight": 235.0, "College": "Georgia Tech", "Salary": 22192730.0},
{"Name": "Luol Deng", "Team": "Miami Heat", "Number": "9.0", "Position": "Small Forward (SF)", "Age": 31.0, "Height": 6.75, "Weight": 220.0, "College": "Duke", "Salary": 10151612.0},
{"Name": "Goran Dragic", "Team": "Miami Heat", "Number": "7.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.25, "Weight": 190.0, "College": "", "Salary": 14783000.0},
{"Name": "Gerald Green", "Team": "Miami Heat", "Number": "14.0", "Position": "Small Forward (SF)", "Age": 30.0, "Height": 6.58, "Weight": 205.0, "College": "", "Salary": 947276.0},
{"Name": "Udonis Haslem", "Team": "Miami Heat", "Number": "40.0", "Position": "Power Forward (PF)", "Age": 36.0, "Height": 6.67, "Weight": 235.0, "College": "Florida", "Salary": 2854940.0},
{"Name": "Joe Johnson", "Team": "Miami Heat", "Number": "2.0", "Position": "Small Forward (SF)", "Age": 34.0, "Height": 6.58, "Weight": 240.0, "College": "Arkansas", "Salary": 261894.0},
{"Name": "Tyler Johnson", "Team": "Miami Heat", "Number": "8.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.33, "Weight": 186.0, "College": "Fresno State", "Salary": 845059.0},
{"Name": "Josh McRoberts", "Team": "Miami Heat", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.83, "Weight": 240.0, "College": "Duke", "Salary": 5543725.0},
{"Name": "Josh Richardson", "Team": "Miami Heat", "Number": "0.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.5, "Weight": 200.0, "College": "Tennessee", "Salary": 525093.0},
{"Name": "Amar'e Stoudemire", "Team": "Miami Heat", "Number": "5.0", "Position": "Power Forward (PF)", "Age": 33.0, "Height": 6.83, "Weight": 245.0, "College": "", "Salary": 947276.0},
{"Name": "Dwyane Wade", "Team": "Miami Heat", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 34.0, "Height": 6.33, "Weight": 220.0, "College": "Marquette", "Salary": 20000000.0},
{"Name": "Briante Weber", "Team": "Miami Heat", "Number": "12.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.17, "Weight": 165.0, "College": "Virginia Commonwealth", "Salary": 0},
{"Name": "Hassan Whiteside", "Team": "Miami Heat", "Number": "21.0", "Position": "Center (C)", "Age": 26.0, "Height": 7.0, "Weight": 265.0, "College": "Marshall", "Salary": 981348.0},
{"Name": "Justise Winslow", "Team": "Miami Heat", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 20.0, "Height": 6.58, "Weight": 225.0, "College": "Duke", "Salary": 2481720.0},
{"Name": "Dorell Wright", "Team": "Miami Heat", "Number": "11.0", "Position": "Small Forward (SF)", "Age": 30.0, "Height": 6.75, "Weight": 205.0, "College": "", "Salary": 0},
{"Name": "Dewayne Dedmon", "Team": "Orlando Magic", "Number": "3.0", "Position": "Center (C)", "Age": 26.0, "Height": 7.0, "Weight": 245.0, "College": "USC", "Salary": 947276.0},
{"Name": "Evan Fournier", "Team": "Orlando Magic", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.58, "Weight": 205.0, "College": "", "Salary": 2288205.0},
{"Name": "Aaron Gordon", "Team": "Orlando Magic", "Number": "0.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.75, "Weight": 220.0, "College": "Arizona", "Salary": 4171680.0},
{"Name": "Mario Hezonja", "Team": "Orlando Magic", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.67, "Weight": 218.0, "College": "", "Salary": 3741480.0},
{"Name": "Ersan Ilyasova", "Team": "Orlando Magic", "Number": "7.0", "Position": "Power Forward (PF)", "Age": 29.0, "Height": 6.83, "Weight": 235.0, "College": "", "Salary": 7900000.0},
{"Name": "Brandon Jennings", "Team": "Orlando Magic", "Number": "55.0", "Position": "Point Guard (PG)", "Age": 26.0, "Height": 6.08, "Weight": 169.0, "College": "", "Salary": 8344497.0},
{"Name": "Devyn Marble", "Team": "Orlando Magic", "Number": "11.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.5, "Weight": 200.0, "College": "Iowa", "Salary": 845059.0},
{"Name": "Shabazz Napier", "Team": "Orlando Magic", "Number": "13.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.08, "Weight": 175.0, "College": "Connecticut", "Salary": 1294440.0},
{"Name": "Andrew Nicholson", "Team": "Orlando Magic", "Number": "44.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.75, "Weight": 250.0, "College": "St. Bonaventure", "Salary": 2380593.0},
{"Name": "Victor Oladipo", "Team": "Orlando Magic", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.33, "Weight": 210.0, "College": "Indiana", "Salary": 5192520.0},
{"Name": "Elfrid Payton", "Team": "Orlando Magic", "Number": "4.0", "Position": "Point Guard (PG)", "Age": 22.0, "Height": 6.33, "Weight": 185.0, "College": "Louisiana-Lafayette", "Salary": 2505720.0},
{"Name": "Jason Smith", "Team": "Orlando Magic", "Number": "14.0", "Position": "Power Forward (PF)", "Age": 30.0, "Height": 7.0, "Weight": 240.0, "College": "Colorado State", "Salary": 4300000.0},
{"Name": "Nikola Vucevic", "Team": "Orlando Magic", "Number": "9.0", "Position": "Center (C)", "Age": 25.0, "Height": 7.0, "Weight": 260.0, "College": "USC", "Salary": 11250000.0},
{"Name": "C.J. Watson", "Team": "Orlando Magic", "Number": "32.0", "Position": "Point Guard (PG)", "Age": 32.0, "Height": 6.17, "Weight": 175.0, "College": "Tennessee", "Salary": 5000000.0},
{"Name": "Alan Anderson", "Team": "Washington Wizards", "Number": "6.0", "Position": "Shooting Guard (SG)", "Age": 33.0, "Height": 6.5, "Weight": 220.0, "College": "Michigan State", "Salary": 4000000.0},
{"Name": "Bradley Beal", "Team": "Washington Wizards", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 22.0, "Height": 6.42, "Weight": 207.0, "College": "Florida", "Salary": 5694674.0},
{"Name": "Jared Dudley", "Team": "Washington Wizards", "Number": "1.0", "Position": "Small Forward (SF)", "Age": 30.0, "Height": 6.58, "Weight": 225.0, "College": "Boston College", "Salary": 4375000.0},
{"Name": "Jarell Eddie", "Team": "Washington Wizards", "Number": "8.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.58, "Weight": 218.0, "College": "Virginia Tech", "Salary": 561716.0},
{"Name": "Drew Gooden", "Team": "Washington Wizards", "Number": "90.0", "Position": "Power Forward (PF)", "Age": 34.0, "Height": 6.83, "Weight": 250.0, "College": "Kansas", "Salary": 3300000.0},
{"Name": "Marcin Gortat", "Team": "Washington Wizards", "Number": "13.0", "Position": "Center (C)", "Age": 32.0, "Height": 6.92, "Weight": 240.0, "College": "", "Salary": 11217391.0},
{"Name": "JJ Hickson", "Team": "Washington Wizards", "Number": "21.0", "Position": "Center (C)", "Age": 27.0, "Height": 6.75, "Weight": 242.0, "College": "North Carolina State", "Salary": 273038.0},
{"Name": "Nene Hilario", "Team": "Washington Wizards", "Number": "42.0", "Position": "Center (C)", "Age": 33.0, "Height": 6.92, "Weight": 250.0, "College": "", "Salary": 13000000.0},
{"Name": "Markieff Morris", "Team": "Washington Wizards", "Number": "5.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.83, "Weight": 245.0, "College": "Kansas", "Salary": 8000000.0},
{"Name": "Kelly Oubre Jr.", "Team": "Washington Wizards", "Number": "12.0", "Position": "Small Forward (SF)", "Age": 20.0, "Height": 6.58, "Weight": 205.0, "College": "Kansas", "Salary": 1920240.0},
{"Name": "Otto Porter Jr.", "Team": "Washington Wizards", "Number": "22.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.67, "Weight": 198.0, "College": "Georgetown", "Salary": 4662960.0},
{"Name": "Ramon Sessions", "Team": "Washington Wizards", "Number": "7.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.25, "Weight": 190.0, "College": "Nevada", "Salary": 2170465.0},
{"Name": "Garrett Temple", "Team": "Washington Wizards", "Number": "17.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.5, "Weight": 195.0, "College": "LSU", "Salary": 1100602.0},
{"Name": "Marcus Thornton", "Team": "Washington Wizards", "Number": "15.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.33, "Weight": 205.0, "College": "LSU", "Salary": 200600.0},
{"Name": "John Wall", "Team": "Washington Wizards", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.33, "Weight": 195.0, "College": "Kentucky", "Salary": 15851950.0},
{"Name": "Darrell Arthur", "Team": "Denver Nuggets", "Number": "0.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.75, "Weight": 235.0, "College": "Kansas", "Salary": 2814000.0},
{"Name": "D.J. Augustin", "Team": "Denver Nuggets", "Number": "12.0", "Position": "Point Guard (PG)", "Age": 28.0, "Height": 6.0, "Weight": 183.0, "College": "Texas", "Salary": 3000000.0},
{"Name": "Will Barton", "Team": "Denver Nuggets", "Number": "5.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.5, "Weight": 175.0, "College": "Memphis", "Salary": 3533333.0},
{"Name": "Wilson Chandler", "Team": "Denver Nuggets", "Number": "21.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.67, "Weight": 225.0, "College": "DePaul", "Salary": 10449438.0},
{"Name": "Kenneth Faried", "Team": "Denver Nuggets", "Number": "35.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.67, "Weight": 228.0, "College": "Morehead State", "Salary": 11235955.0},
{"Name": "Danilo Gallinari", "Team": "Denver Nuggets", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 27.0, "Height": 6.83, "Weight": 225.0, "College": "", "Salary": 14000000.0},
{"Name": "Gary Harris", "Team": "Denver Nuggets", "Number": "14.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.33, "Weight": 210.0, "College": "Michigan State", "Salary": 1584480.0},
{"Name": "Nikola Jokic", "Team": "Denver Nuggets", "Number": "15.0", "Position": "Center (C)", "Age": 21.0, "Height": 6.83, "Weight": 250.0, "College": "", "Salary": 1300000.0},
{"Name": "Joffrey Lauvergne", "Team": "Denver Nuggets", "Number": "77.0", "Position": "Center (C)", "Age": 24.0, "Height": 6.92, "Weight": 220.0, "College": "", "Salary": 1709719.0},
{"Name": "Mike Miller", "Team": "Denver Nuggets", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 36.0, "Height": 6.67, "Weight": 218.0, "College": "Florida", "Salary": 947276.0},
{"Name": "Emmanuel Mudiay", "Team": "Denver Nuggets", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 20.0, "Height": 6.42, "Weight": 200.0, "College": "", "Salary": 3102240.0},
{"Name": "Jameer Nelson", "Team": "Denver Nuggets", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 34.0, "Height": 6.0, "Weight": 190.0, "College": "Saint Joseph's", "Salary": 4345000.0},
{"Name": "Jusuf Nurkic", "Team": "Denver Nuggets", "Number": "23.0", "Position": "Center (C)", "Age": 21.0, "Height": 7.0, "Weight": 280.0, "College": "", "Salary": 1842000.0},
{"Name": "JaKarr Sampson", "Team": "Denver Nuggets", "Number": "9.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.75, "Weight": 214.0, "College": "St. John's", "Salary": 258489.0},
{"Name": "Axel Toupane", "Team": "Denver Nuggets", "Number": "6.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.58, "Weight": 210.0, "College": "", "Salary": 0},
{"Name": "Nemanja Bjelica", "Team": "Minnesota Timberwolves", "Number": "88.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.83, "Weight": 240.0, "College": "", "Salary": 3950001.0},
{"Name": "Gorgui Dieng", "Team": "Minnesota Timberwolves", "Number": "5.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.92, "Weight": 241.0, "College": "Louisville", "Salary": 1474440.0},
{"Name": "Kevin Garnett", "Team": "Minnesota Timberwolves", "Number": "21.0", "Position": "Power Forward (PF)", "Age": 40.0, "Height": 6.92, "Weight": 240.0, "College": "", "Salary": 8500000.0},
{"Name": "Tyus Jones", "Team": "Minnesota Timberwolves", "Number": "1.0", "Position": "Point Guard (PG)", "Age": 20.0, "Height": 6.17, "Weight": 195.0, "College": "Duke", "Salary": 1282080.0},
{"Name": "Zach LaVine", "Team": "Minnesota Timberwolves", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 21.0, "Height": 6.42, "Weight": 189.0, "College": "UCLA", "Salary": 2148360.0},
{"Name": "Shabazz Muhammad", "Team": "Minnesota Timberwolves", "Number": "15.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.5, "Weight": 223.0, "College": "UCLA", "Salary": 2056920.0},
{"Name": "Adreian Payne", "Team": "Minnesota Timberwolves", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.83, "Weight": 237.0, "College": "Michigan State", "Salary": 1938840.0},
{"Name": "Nikola Pekovic", "Team": "Minnesota Timberwolves", "Number": "14.0", "Position": "Center (C)", "Age": 30.0, "Height": 6.92, "Weight": 307.0, "College": "", "Salary": 12100000.0},
{"Name": "Tayshaun Prince", "Team": "Minnesota Timberwolves", "Number": "12.0", "Position": "Small Forward (SF)", "Age": 36.0, "Height": 6.75, "Weight": 212.0, "College": "Kentucky", "Salary": 947276.0},
{"Name": "Ricky Rubio", "Team": "Minnesota Timberwolves", "Number": "9.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.33, "Weight": 194.0, "College": "", "Salary": 12700000.0},
{"Name": "Damjan Rudez", "Team": "Minnesota Timberwolves", "Number": "10.0", "Position": "Small Forward (SF)", "Age": 29.0, "Height": 6.75, "Weight": 230.0, "College": "", "Salary": 1149500.0},
{"Name": "Greg Smith", "Team": "Minnesota Timberwolves", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 25.0, "Height": 6.83, "Weight": 250.0, "College": "Fresno State", "Salary": 0},
{"Name": "Karl-Anthony Towns", "Team": "Minnesota Timberwolves", "Number": "32.0", "Position": "Center (C)", "Age": 20.0, "Height": 7.0, "Weight": 244.0, "College": "Kentucky", "Salary": 5703600.0},
{"Name": "Andrew Wiggins", "Team": "Minnesota Timberwolves", "Number": "22.0", "Position": "Shooting Guard (SG)", "Age": 21.0, "Height": 6.67, "Weight": 199.0, "College": "Kansas", "Salary": 5758680.0},
{"Name": "Steven Adams", "Team": "Oklahoma City Thunder", "Number": "12.0", "Position": "Center (C)", "Age": 22.0, "Height": 7.0, "Weight": 255.0, "College": "Pittsburgh", "Salary": 2279040.0},
{"Name": "Nick Collison", "Team": "Oklahoma City Thunder", "Number": "4.0", "Position": "Power Forward (PF)", "Age": 35.0, "Height": 6.83, "Weight": 255.0, "College": "Kansas", "Salary": 3750000.0},
{"Name": "Kevin Durant", "Team": "Oklahoma City Thunder", "Number": "35.0", "Position": "Small Forward (SF)", "Age": 27.0, "Height": 6.75, "Weight": 240.0, "College": "Texas", "Salary": 20158622.0},
{"Name": "Randy Foye", "Team": "Oklahoma City Thunder", "Number": "6.0", "Position": "Shooting Guard (SG)", "Age": 32.0, "Height": 6.33, "Weight": 213.0, "College": "Villanova", "Salary": 3135000.0},
{"Name": "Josh Huestis", "Team": "Oklahoma City Thunder", "Number": "34.0", "Position": "Small Forward (SF)", "Age": 24.0, "Height": 6.58, "Weight": 230.0, "College": "Stanford", "Salary": 1140240.0},
{"Name": "Serge Ibaka", "Team": "Oklahoma City Thunder", "Number": "9.0", "Position": "Power Forward (PF)", "Age": 26.0, "Height": 6.83, "Weight": 245.0, "College": "", "Salary": 12250000.0},
{"Name": "Enes Kanter", "Team": "Oklahoma City Thunder", "Number": "11.0", "Position": "Center (C)", "Age": 24.0, "Height": 6.92, "Weight": 245.0, "College": "Kentucky", "Salary": 16407500.0},
{"Name": "Mitch McGary", "Team": "Oklahoma City Thunder", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.83, "Weight": 255.0, "College": "Michigan", "Salary": 1463040.0},
{"Name": "Nazr Mohammed", "Team": "Oklahoma City Thunder", "Number": "13.0", "Position": "Center (C)", "Age": 38.0, "Height": 6.83, "Weight": 250.0, "College": "Kentucky", "Salary": 222888.0},
{"Name": "Anthony Morrow", "Team": "Oklahoma City Thunder", "Number": "2.0", "Position": "Shooting Guard (SG)", "Age": 30.0, "Height": 6.42, "Weight": 210.0, "College": "Georgia Tech", "Salary": 3344000.0},
{"Name": "Cameron Payne", "Team": "Oklahoma City Thunder", "Number": "22.0", "Position": "Point Guard (PG)", "Age": 21.0, "Height": 6.25, "Weight": 185.0, "College": "Murray State", "Salary": 2021520.0},
{"Name": "Andre Roberson", "Team": "Oklahoma City Thunder", "Number": "21.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.58, "Weight": 210.0, "College": "Colorado", "Salary": 1210800.0},
{"Name": "Kyle Singler", "Team": "Oklahoma City Thunder", "Number": "5.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.67, "Weight": 228.0, "College": "Duke", "Salary": 4500000.0},
{"Name": "Dion Waiters", "Team": "Oklahoma City Thunder", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.33, "Weight": 220.0, "College": "Syracuse", "Salary": 5138430.0},
{"Name": "Russell Westbrook", "Team": "Oklahoma City Thunder", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 27.0, "Height": 6.25, "Weight": 200.0, "College": "UCLA", "Salary": 16744218.0},
{"Name": "Cliff Alexander", "Team": "Portland Trail Blazers", "Number": "34.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.67, "Weight": 240.0, "College": "Kansas", "Salary": 525093.0},
{"Name": "Al-Farouq Aminu", "Team": "Portland Trail Blazers", "Number": "8.0", "Position": "Small Forward (SF)", "Age": 25.0, "Height": 6.75, "Weight": 215.0, "College": "Wake Forest", "Salary": 8042895.0},
{"Name": "Pat Connaughton", "Team": "Portland Trail Blazers", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.42, "Weight": 206.0, "College": "Notre Dame", "Salary": 625093.0},
{"Name": "Allen Crabbe", "Team": "Portland Trail Blazers", "Number": "23.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.5, "Weight": 210.0, "College": "California", "Salary": 947276.0},
{"Name": "Ed Davis", "Team": "Portland Trail Blazers", "Number": "17.0", "Position": "Center (C)", "Age": 27.0, "Height": 6.83, "Weight": 240.0, "College": "North Carolina", "Salary": 6980802.0},
{"Name": "Maurice Harkless", "Team": "Portland Trail Blazers", "Number": "4.0", "Position": "Small Forward (SF)", "Age": 23.0, "Height": 6.75, "Weight": 215.0, "College": "St. John's", "Salary": 2894059.0},
{"Name": "Gerald Henderson", "Team": "Portland Trail Blazers", "Number": "9.0", "Position": "Shooting Guard (SG)", "Age": 28.0, "Height": 6.42, "Weight": 215.0, "College": "Duke", "Salary": 6000000.0},
{"Name": "Chris Kaman", "Team": "Portland Trail Blazers", "Number": "35.0", "Position": "Center (C)", "Age": 34.0, "Height": 7.0, "Weight": 265.0, "College": "Central Michigan", "Salary": 5016000.0},
{"Name": "Meyers Leonard", "Team": "Portland Trail Blazers", "Number": "11.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 7.08, "Weight": 245.0, "College": "Illinois", "Salary": 3075880.0},
{"Name": "Damian Lillard", "Team": "Portland Trail Blazers", "Number": "0.0", "Position": "Point Guard (PG)", "Age": 25.0, "Height": 6.25, "Weight": 195.0, "College": "Weber State", "Salary": 4236287.0},
{"Name": "C.J. McCollum", "Team": "Portland Trail Blazers", "Number": "3.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.33, "Weight": 200.0, "College": "Lehigh", "Salary": 2525160.0},
{"Name": "Luis Montero", "Team": "Portland Trail Blazers", "Number": "44.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.58, "Weight": 185.0, "College": "Westchester CC", "Salary": 525093.0},
{"Name": "Mason Plumlee", "Team": "Portland Trail Blazers", "Number": "24.0", "Position": "Center (C)", "Age": 26.0, "Height": 6.92, "Weight": 235.0, "College": "Duke", "Salary": 1415520.0},
{"Name": "Brian Roberts", "Team": "Portland Trail Blazers", "Number": "2.0", "Position": "Point Guard (PG)", "Age": 30.0, "Height": 6.08, "Weight": 173.0, "College": "Dayton", "Salary": 2854940.0},
{"Name": "Noah Vonleh", "Team": "Portland Trail Blazers", "Number": "21.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.75, "Weight": 240.0, "College": "Indiana", "Salary": 2637720.0},
{"Name": "Trevor Booker", "Team": "Utah Jazz", "Number": "33.0", "Position": "Power Forward (PF)", "Age": 28.0, "Height": 6.67, "Weight": 228.0, "College": "Clemson", "Salary": 4775000.0},
{"Name": "Trey Burke", "Team": "Utah Jazz", "Number": "3.0", "Position": "Point Guard (PG)", "Age": 23.0, "Height": 6.08, "Weight": 191.0, "College": "Michigan", "Salary": 2658240.0},
{"Name": "Alec Burks", "Team": "Utah Jazz", "Number": "10.0", "Position": "Shooting Guard (SG)", "Age": 24.0, "Height": 6.5, "Weight": 214.0, "College": "Colorado", "Salary": 9463484.0},
{"Name": "Dante Exum", "Team": "Utah Jazz", "Number": "11.0", "Position": "Point Guard (PG)", "Age": 20.0, "Height": 6.5, "Weight": 190.0, "College": "", "Salary": 3777720.0},
{"Name": "Derrick Favors", "Team": "Utah Jazz", "Number": "15.0", "Position": "Power Forward (PF)", "Age": 24.0, "Height": 6.83, "Weight": 265.0, "College": "Georgia Tech", "Salary": 12000000.0},
{"Name": "Rudy Gobert", "Team": "Utah Jazz", "Number": "27.0", "Position": "Center (C)", "Age": 23.0, "Height": 7.08, "Weight": 245.0, "College": "", "Salary": 1175880.0},
{"Name": "Gordon Hayward", "Team": "Utah Jazz", "Number": "20.0", "Position": "Small Forward (SF)", "Age": 26.0, "Height": 6.67, "Weight": 226.0, "College": "Butler", "Salary": 15409570.0},
{"Name": "Rodney Hood", "Team": "Utah Jazz", "Number": "5.0", "Position": "Shooting Guard (SG)", "Age": 23.0, "Height": 6.67, "Weight": 206.0, "College": "Duke", "Salary": 1348440.0},
{"Name": "Joe Ingles", "Team": "Utah Jazz", "Number": "2.0", "Position": "Small Forward (SF)", "Age": 28.0, "Height": 6.67, "Weight": 226.0, "College": "", "Salary": 2050000.0},
{"Name": "Chris Johnson", "Team": "Utah Jazz", "Number": "23.0", "Position": "Small Forward (SF)", "Age": 26.0, "Height": 6.5, "Weight": 206.0, "College": "Dayton", "Salary": 981348.0},
{"Name": "Trey Lyles", "Team": "Utah Jazz", "Number": "41.0", "Position": "Power Forward (PF)", "Age": 20.0, "Height": 6.83, "Weight": 234.0, "College": "Kentucky", "Salary": 2239800.0},
{"Name": "Shelvin Mack", "Team": "Utah Jazz", "Number": "8.0", "Position": "Point Guard (PG)", "Age": 26.0, "Height": 6.25, "Weight": 203.0, "College": "Butler", "Salary": 2433333.0},
{"Name": "Raul Neto", "Team": "Utah Jazz", "Number": "25.0", "Position": "Point Guard (PG)", "Age": 24.0, "Height": 6.08, "Weight": 179.0, "College": "", "Salary": 900000.0},
{"Name": "Tibor Pleiss", "Team": "Utah Jazz", "Number": "21.0", "Position": "Center (C)", "Age": 26.0, "Height": 7.25, "Weight": 256.0, "College": "", "Salary": 2900000.0},
{"Name": "Jeff Withey", "Team": "Utah Jazz", "Number": "24.0", "Position": "Center (C)", "Age": 26.0, "Height": 7.0, "Weight": 231.0, "College": "Kansas", "Salary": 947276.0},
]
const positionColors = {
"Point Guard (PG)": 'rgba(230, 100, 100, 1)', // 'rgba(255, 0, 0, 0.8)', // Red for Point Guard
"Shooting Guard (SG)": 'rgba(220, 170, 120, 1)', // 'rgba(0, 255, 0, 0.8)', // Green for Shooting Guard
"Small Forward (SF)": 'rgba(100, 180, 200, 1)', // 'rgba(0, 0, 255, 0.8)', // Blue for Small Forward
"Power Forward (PF)": 'rgba(100, 130, 230, 1)', // 'rgba(255, 255, 0, 0.8)', // Yellow for Power Forward
"Center (C)": 'rgba(120, 200, 120, 1)' // 'rgba(0, 255, 255, 0.8)' // Cyan for Center
};
const globalFont = { family: "Ubuntu, sans-serif" };
function createSalaryChart(filteredData) {
const sortedData = [...filteredData].sort((a, b) => b.Salary - a.Salary);
var trace1 = {
x: sortedData.map(player => player.Name),
y: sortedData.map(player => player.Salary),
type: 'bar',
marker: {
color: sortedData.map(player => positionColors[player.Position] || '#ccc')
},
text: sortedData.map(player =>
`Name: ${player.Name}<br>Position: ${player.Position}<br>Age: ${player.Age}<br>Height: ${(player.Height * 12).toFixed(0)} inches (${(player.Height).toFixed(2)} ft)<br>Weight: ${player.Weight} lbs<br>College: ${player.College}`
),
hoverinfo: 'text+y'
};
const data = [trace1];
const layout = {
title: "Player Salaries",
xaxis: { title: "Player Name", automargin: true },
yaxis: { title: "Salary ($)" },
height: 500,
margin: { b: 150 },
font: globalFont
};
Plotly.newPlot('salary-chart', data, layout);
document.getElementById('salary-chart').on('plotly_click', function(data) {
if (data.points && data.points.length > 0) {
const selectedName = sortedData[data.points[0].pointIndex].Name;
filterDataAndUpdateCharts(selectedName, 'Name');
}
});
document.getElementById('salary-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function createPositionChart(filteredData) {
var positionCounts = {};
filteredData.forEach(function(player) {
if (player.Position) {
if (positionCounts[player.Position]) {
positionCounts[player.Position]++;
} else {
positionCounts[player.Position] = 1;
}
}
});
var labels = Object.keys(positionCounts);
var values = Object.values(positionCounts);
var colorsForPie = labels.map(label => positionColors[label]);
var trace = {
labels: labels,
values: values,
type: 'pie',
name: "Position",
marker: {
colors: colorsForPie // Assign based on same colors for consistency with previous chart
},
hoverinfo: 'label+percent+value'
};
var data = [trace];
var layout = {
title: "Player Positions",
showlegend: true,
height: 500,
font: globalFont
};
Plotly.newPlot('position-chart', data, layout);
document.getElementById('position-chart').on('plotly_click', function(data) {
if (data.points && data.points.length > 0) {
const selectedPosition = data.points[0].label;
filterDataAndUpdateCharts(selectedPosition, 'Position');
}
});
document.getElementById('position-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function createAgeChart(filteredData) {
var trace = {
x: filteredData.map(player => player.Age),
type: 'histogram',
marker: {color: '#555'},
name: "Age"
};
const data = [trace];
const layout = {
title: "Player Age Distribution",
xaxis: { title: "Age" },
yaxis: { title: "Count" },
height: 400,
font: globalFont
};
Plotly.newPlot('age-chart', data, layout);
document.getElementById('age-chart').ondblclick = resetToAllPlayers;
}
function createHeightChart(filteredData) {
const trace = {
x: filteredData.map(player => player.Height),
type: 'histogram',
marker: {color: '#333'},
name: "Height"
};
const data = [trace];
const layout = {
title: "Player Height Distribution",
xaxis: { title: "Height (ft)" },
yaxis: { title: "Count" },
height: 400,
font: globalFont
};
Plotly.newPlot('height-chart', data, layout);
document.getElementById('height-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function createWeightChart(filteredData) {
var trace = {
x: filteredData.map(player => player.Weight),
type: 'histogram',
marker: {color: '#777'},
name: "Weight"
};
var data = [trace];
var layout = {
title: "Player Weight(s)",
xaxis: {title: "Weight (lbs)"},
yaxis: {title: "Count"},
height: 400,
font: globalFont
};
Plotly.newPlot('weight-chart', data, layout);
document.getElementById('weight-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function createCollegeChart(filteredData) {
// This function creates a stacked bar chart of players per college,
// with stacks representing player positions.
const collegePositionCounts = {};
// Group players by college and then by position
filteredData.forEach(player => {
const college = player.College || "None/Unknown";
const position = player.Position;
if (!position) return;
if (!collegePositionCounts[college]) {
collegePositionCounts[college] = {};
}
collegePositionCounts[college][position] = (collegePositionCounts[college][position] || 0) + 1;
});
// Sort colleges by the total number of players
const sortedColleges = Object.keys(collegePositionCounts).sort((a, b) => {
const countA = Object.values(collegePositionCounts[a]).reduce((sum, count) => sum + count, 0);
const countB = Object.values(collegePositionCounts[b]).reduce((sum, count) => sum + count, 0);
return countB - countA;
});
const positions = Object.keys(positionColors);
const data = positions.map(position => {
const y_values = sortedColleges.map(college => collegePositionCounts[college][position] || 0);
return {
x: sortedColleges,
y: y_values,
name: position,
type: 'bar',
marker: { color: positionColors[position] }
};
});
const layout = {
title: "Player Colleges by Position",
xaxis: { title: "College", automargin: true },
yaxis: { title: "Number of Players" },
barmode: 'stack', // This creates the stacked bar chart
height: 500,
margin: { b: 150 },
font: globalFont
};
Plotly.newPlot('college-chart', data, layout);
document.getElementById('college-chart').on('plotly_click', function(data) {
if (data.points && data.points.length > 0) {
const selectedCollege = data.points[0].x;
filterDataAndUpdateCharts(selectedCollege, 'College');
}
});
document.getElementById('college-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function createSalaryRangePerPositionChart(filteredData) {
var positionGroups = {};
filteredData.forEach(function(player) {
if (player.Position) { // Ensure position exists
if (!positionGroups[player.Position]) {
positionGroups[player.Position] = [];
}
positionGroups[player.Position].push(player.Salary);
}
});
const orderedPositions = Object.keys(positionColors);
var data = orderedPositions.filter(pos => positionGroups[pos]).map(position => ({
y: positionGroups[position],
type: 'box',
name: position,
boxpoints: 'Outliers',
marker: {
color: positionColors[position]
}
}));
var layout = {
title: "Salary Range Per Position",
xaxis: {title: "Position", automargin: true},
yaxis: {title: "Salary ($)"},
height: 500,
font: globalFont
};
Plotly.newPlot('salary-range-per-position-chart', data, layout);
document.getElementById('salary-range-per-position-chart').ondblclick = function() {
resetToAllPlayers();
};
}
function filterDataAndUpdateCharts(selectedValue, filterType) {
let filteredData;
if (selectedValue === "ALL") {
filteredData = playersData;
} else if (filterType === 'Name') {
filteredData = playersData.filter(p => p.Name === selectedValue);
} else if (filterType === 'Position') {
filteredData = playersData.filter(p => p.Position === selectedValue);
} else if (filterType === 'College') {
if (selectedValue === "None/Unknown") {
filteredData = playersData.filter(p => !p.College);
} else {
filteredData = playersData.filter(p => p.College === selectedValue);
}
} else {
filteredData = playersData;
}
if (filteredData.length === 0 && selectedValue !== "ALL") {
console.warn(`No players found for the selected filter: ${selectedValue}. Resetting.`);
resetToAllPlayers();
return;
}
// Re-render all charts with the newly filtered data
createSalaryChart(filteredData);
createPositionChart(filteredData);
createCollegeChart(filteredData);
createSalaryRangePerPositionChart(filteredData);
createAgeChart(filteredData);
createHeightChart(filteredData);
createWeightChart(filteredData);
}
function resetToAllPlayers() {
filterDataAndUpdateCharts("ALL");
}
resetToAllPlayers();
</script>
</body>
</html>
import csv
import json
positions = {
'SF': "Small Forward (SF)",
'SG': "Shooting Guard (SG)",
'PF': "Power Forward (PF)",
'PG': "Point Guard (PG)",
'C': "Center (C)",
}
def height_to_decimal(height_str):
try:
feet, inches = map(int, height_str.split('-'))
decimal_height = feet + inches / 12
return round(decimal_height, 2) # rounded to 2 decimal places
except ValueError:
raise ValueError(f"Invalid height format: {height_str}. Expected format 'feet-inches'.")
def sanitize_row(row):
row['Position'] = positions[row['Position']]
row['Height'] = height_to_decimal(row['Height'])
try:
row['Salary'] = float(row['Salary'])
except:
row['Salary'] = 0
try:
row['Age'] = float(row['Age'])
except:
row['Age'] = 0
try:
row['Weight'] = float(row['Weight'])
except:
row['Weight'] = 0
return row
# Function to convert a CSV to JSON
def csv_to_json(csv_file, json_file):
# Read the CSV file
with open(csv_file, mode='r') as f:
# Get the header row
header = next(csv.reader(f))
# Use DictReader to convert each row into a dictionary
reader = csv.DictReader(f, fieldnames=header)
# Write each dictionary as a separate line in the JSON file
with open(json_file, mode='w') as f:
f.write('[\n')
for row in reader:
json.dump(sanitize_row(row), f)
f.write(',\n')
f.write(']\n')
# Convert a CSV file to JSON format
csv_to_json('nba.csv', 'output.json')
Name Team Number Position Age Height Weight College Salary
Avery Bradley Boston Celtics 0.0 PG 25.0 6-2 180.0 Texas 7730337.0
Jae Crowder Boston Celtics 99.0 SF 25.0 6-6 235.0 Marquette 6796117.0
John Holland Boston Celtics 30.0 SG 27.0 6-5 205.0 Boston University
R.J. Hunter Boston Celtics 28.0 SG 22.0 6-5 185.0 Georgia State 1148640.0
Jonas Jerebko Boston Celtics 8.0 PF 29.0 6-10 231.0 5000000.0
Amir Johnson Boston Celtics 90.0 PF 29.0 6-9 240.0 12000000.0
Jordan Mickey Boston Celtics 55.0 PF 21.0 6-8 235.0 LSU 1170960.0
Kelly Olynyk Boston Celtics 41.0 C 25.0 7-0 238.0 Gonzaga 2165160.0
Terry Rozier Boston Celtics 12.0 PG 22.0 6-2 190.0 Louisville 1824360.0
Marcus Smart Boston Celtics 36.0 PG 22.0 6-4 220.0 Oklahoma State 3431040.0
Jared Sullinger Boston Celtics 7.0 C 24.0 6-9 260.0 Ohio State 2569260.0
Isaiah Thomas Boston Celtics 4.0 PG 27.0 5-9 185.0 Washington 6912869.0
Evan Turner Boston Celtics 11.0 SG 27.0 6-7 220.0 Ohio State 3425510.0
James Young Boston Celtics 13.0 SG 20.0 6-6 215.0 Kentucky 1749840.0
Tyler Zeller Boston Celtics 44.0 C 26.0 7-0 253.0 North Carolina 2616975.0
Bojan Bogdanovic Brooklyn Nets 44.0 SG 27.0 6-8 216.0 3425510.0
Markel Brown Brooklyn Nets 22.0 SG 24.0 6-3 190.0 Oklahoma State 845059.0
Wayne Ellington Brooklyn Nets 21.0 SG 28.0 6-4 200.0 North Carolina 1500000.0
Rondae Hollis-Jefferson Brooklyn Nets 24.0 SG 21.0 6-7 220.0 Arizona 1335480.0
Jarrett Jack Brooklyn Nets 2.0 PG 32.0 6-3 200.0 Georgia Tech 6300000.0
Sergey Karasev Brooklyn Nets 10.0 SG 22.0 6-7 208.0 1599840.0
Sean Kilpatrick Brooklyn Nets 6.0 SG 26.0 6-4 219.0 Cincinnati 134215.0
Shane Larkin Brooklyn Nets 0.0 PG 23.0 5-11 175.0 Miami (FL) 1500000.0
Brook Lopez Brooklyn Nets 11.0 C 28.0 7-0 275.0 Stanford 19689000.0
Chris McCullough Brooklyn Nets 1.0 PF 21.0 6-11 200.0 Syracuse 1140240.0
Willie Reed Brooklyn Nets 33.0 PF 26.0 6-10 220.0 Saint Louis 947276.0
Thomas Robinson Brooklyn Nets 41.0 PF 25.0 6-10 237.0 Kansas 981348.0
Henry Sims Brooklyn Nets 14.0 C 26.0 6-10 248.0 Georgetown 947276.0
Donald Sloan Brooklyn Nets 15.0 PG 28.0 6-3 205.0 Texas A&M 947276.0
Thaddeus Young Brooklyn Nets 30.0 PF 27.0 6-8 221.0 Georgia Tech 11235955.0
Arron Afflalo New York Knicks 4.0 SG 30.0 6-5 210.0 UCLA 8000000.0
Lou Amundson New York Knicks 17.0 PF 33.0 6-9 220.0 UNLV 1635476.0
Thanasis Antetokounmpo New York Knicks 43.0 SF 23.0 6-7 205.0 30888.0
Carmelo Anthony New York Knicks 7.0 SF 32.0 6-8 240.0 Syracuse 22875000.0
Jose Calderon New York Knicks 3.0 PG 34.0 6-3 200.0 7402812.0
Cleanthony Early New York Knicks 11.0 SF 25.0 6-8 210.0 Wichita State 845059.0
Langston Galloway New York Knicks 2.0 SG 24.0 6-2 200.0 Saint Joseph's 845059.0
Jerian Grant New York Knicks 13.0 PG 23.0 6-4 195.0 Notre Dame 1572360.0
Robin Lopez New York Knicks 8.0 C 28.0 7-0 255.0 Stanford 12650000.0
Kyle O'Quinn New York Knicks 9.0 PF 26.0 6-10 250.0 Norfolk State 3750000.0
Kristaps Porzingis New York Knicks 6.0 PF 20.0 7-3 240.0 4131720.0
Kevin Seraphin New York Knicks 1.0 C 26.0 6-10 278.0 2814000.0
Lance Thomas New York Knicks 42.0 SF 28.0 6-8 235.0 Duke 1636842.0
Sasha Vujacic New York Knicks 18.0 SG 32.0 6-7 195.0 947276.0
Derrick Williams New York Knicks 23.0 PF 25.0 6-8 240.0 Arizona 4000000.0
Tony Wroten New York Knicks 5.0 SG 23.0 6-6 205.0 Washington 167406.0
Elton Brand Philadelphia 76ers 42.0 PF 37.0 6-9 254.0 Duke
Isaiah Canaan Philadelphia 76ers 0.0 PG 25.0 6-0 201.0 Murray State 947276.0
Robert Covington Philadelphia 76ers 33.0 SF 25.0 6-9 215.0 Tennessee State 1000000.0
Joel Embiid Philadelphia 76ers 21.0 C 22.0 7-0 250.0 Kansas 4626960.0
Jerami Grant Philadelphia 76ers 39.0 SF 22.0 6-8 210.0 Syracuse 845059.0
Richaun Holmes Philadelphia 76ers 22.0 PF 22.0 6-10 245.0 Bowling Green 1074169.0
Carl Landry Philadelphia 76ers 7.0 PF 32.0 6-9 248.0 Purdue 6500000.0
Kendall Marshall Philadelphia 76ers 5.0 PG 24.0 6-4 200.0 North Carolina 2144772.0
T.J. McConnell Philadelphia 76ers 12.0 PG 24.0 6-2 200.0 Arizona 525093.0
Nerlens Noel Philadelphia 76ers 4.0 PF 22.0 6-11 228.0 Kentucky 3457800.0
Jahlil Okafor Philadelphia 76ers 8.0 C 20.0 6-11 275.0 Duke 4582680.0
Ish Smith Philadelphia 76ers 1.0 PG 27.0 6-0 175.0 Wake Forest 947276.0
Nik Stauskas Philadelphia 76ers 11.0 SG 22.0 6-6 205.0 Michigan 2869440.0
Hollis Thompson Philadelphia 76ers 31.0 SG 25.0 6-8 206.0 Georgetown 947276.0
Christian Wood Philadelphia 76ers 35.0 PF 20.0 6-11 220.0 UNLV 525093.0
Bismack Biyombo Toronto Raptors 8.0 C 23.0 6-9 245.0 2814000.0
Bruno Caboclo Toronto Raptors 20.0 SF 20.0 6-9 205.0 1524000.0
DeMarre Carroll Toronto Raptors 5.0 SF 29.0 6-8 212.0 Missouri 13600000.0
DeMar DeRozan Toronto Raptors 10.0 SG 26.0 6-7 220.0 USC 10050000.0
James Johnson Toronto Raptors 3.0 PF 29.0 6-9 250.0 Wake Forest 2500000.0
Cory Joseph Toronto Raptors 6.0 PG 24.0 6-3 190.0 Texas 7000000.0
Kyle Lowry Toronto Raptors 7.0 PG 30.0 6-0 205.0 Villanova 12000000.0
Lucas Nogueira Toronto Raptors 92.0 C 23.0 7-0 220.0 1842000.0
Patrick Patterson Toronto Raptors 54.0 PF 27.0 6-9 235.0 Kentucky 6268675.0
Norman Powell Toronto Raptors 24.0 SG 23.0 6-4 215.0 UCLA 650000.0
Terrence Ross Toronto Raptors 31.0 SF 25.0 6-7 195.0 Washington 3553917.0
Luis Scola Toronto Raptors 4.0 PF 36.0 6-9 240.0 2900000.0
Jason Thompson Toronto Raptors 1.0 PF 29.0 6-11 250.0 Rider 245177.0
Jonas Valanciunas Toronto Raptors 17.0 C 24.0 7-0 255.0 4660482.0
Delon Wright Toronto Raptors 55.0 PG 24.0 6-5 190.0 Utah 1509360.0
Leandro Barbosa Golden State Warriors 19.0 SG 33.0 6-3 194.0 2500000.0
Harrison Barnes Golden State Warriors 40.0 SF 24.0 6-8 225.0 North Carolina 3873398.0
Andrew Bogut Golden State Warriors 12.0 C 31.0 7-0 260.0 Utah 13800000.0
Ian Clark Golden State Warriors 21.0 SG 25.0 6-3 175.0 Belmont 947276.0
Stephen Curry Golden State Warriors 30.0 PG 28.0 6-3 190.0 Davidson 11370786.0
Festus Ezeli Golden State Warriors 31.0 C 26.0 6-11 265.0 Vanderbilt 2008748.0
Draymond Green Golden State Warriors 23.0 PF 26.0 6-7 230.0 Michigan State 14260870.0
Andre Iguodala Golden State Warriors 9.0 SF 32.0 6-6 215.0 Arizona 11710456.0
Shaun Livingston Golden State Warriors 34.0 PG 30.0 6-7 192.0 5543725.0
Kevon Looney Golden State Warriors 36.0 SF 20.0 6-9 220.0 UCLA 1131960.0
James Michael McAdoo Golden State Warriors 20.0 SF 23.0 6-9 240.0 North Carolina 845059.0
Brandon Rush Golden State Warriors 4.0 SF 30.0 6-6 220.0 Kansas 1270964.0
Marreese Speights Golden State Warriors 5.0 C 28.0 6-10 255.0 Florida 3815000.0
Klay Thompson Golden State Warriors 11.0 SG 26.0 6-7 215.0 Washington State 15501000.0
Anderson Varejao Golden State Warriors 18.0 PF 33.0 6-11 273.0 289755.0
Cole Aldrich Los Angeles Clippers 45.0 C 27.0 6-11 250.0 Kansas 1100602.0
Jeff Ayres Los Angeles Clippers 19.0 PF 29.0 6-9 250.0 Arizona State 111444.0
Jamal Crawford Los Angeles Clippers 11.0 SG 36.0 6-5 195.0 Michigan 5675000.0
Branden Dawson Los Angeles Clippers 22.0 SF 23.0 6-6 225.0 Michigan State 525093.0
Jeff Green Los Angeles Clippers 8.0 SF 29.0 6-9 235.0 Georgetown 9650000.0
Blake Griffin Los Angeles Clippers 32.0 PF 27.0 6-10 251.0 Oklahoma 18907726.0
Wesley Johnson Los Angeles Clippers 33.0 SF 28.0 6-7 215.0 Syracuse 1100602.0
DeAndre Jordan Los Angeles Clippers 6.0 C 27.0 6-11 265.0 Texas A&M 19689000.0
Luc Richard Mbah a Moute Los Angeles Clippers 12.0 PF 29.0 6-8 230.0 UCLA 947276.0
Chris Paul Los Angeles Clippers 3.0 PG 31.0 6-0 175.0 Wake Forest 21468695.0
Paul Pierce Los Angeles Clippers 34.0 SF 38.0 6-7 235.0 Kansas 3376000.0
Pablo Prigioni Los Angeles Clippers 9.0 PG 39.0 6-3 185.0 947726.0
JJ Redick Los Angeles Clippers 4.0 SG 31.0 6-4 190.0 Duke 7085000.0
Austin Rivers Los Angeles Clippers 25.0 PG 23.0 6-4 200.0 Duke 3110796.0
C.J. Wilcox Los Angeles Clippers 30.0 SG 25.0 6-5 195.0 Washington 1159680.0
Brandon Bass Los Angeles Lakers 2.0 PF 31.0 6-8 250.0 LSU 3000000.0
Tarik Black Los Angeles Lakers 28.0 C 24.0 6-9 250.0 Kansas 845059.0
Anthony Brown Los Angeles Lakers 3.0 SF 23.0 6-7 210.0 Stanford 700000.0
Kobe Bryant Los Angeles Lakers 24.0 SF 37.0 6-6 212.0 25000000.0
Jordan Clarkson Los Angeles Lakers 6.0 PG 24.0 6-5 194.0 Missouri 845059.0
Roy Hibbert Los Angeles Lakers 17.0 C 29.0 7-2 270.0 Georgetown 15592217.0
Marcelo Huertas Los Angeles Lakers 9.0 PG 33.0 6-3 200.0 525093.0
Ryan Kelly Los Angeles Lakers 4.0 PF 25.0 6-11 230.0 Duke 1724250.0
Larry Nance Jr. Los Angeles Lakers 7.0 PF 23.0 6-9 230.0 Wyoming 1155600.0
Julius Randle Los Angeles Lakers 30.0 PF 21.0 6-9 250.0 Kentucky 3132240.0
D'Angelo Russell Los Angeles Lakers 1.0 PG 20.0 6-5 195.0 Ohio State 5103120.0
Robert Sacre Los Angeles Lakers 50.0 C 27.0 7-0 270.0 Gonzaga 981348.0
Louis Williams Los Angeles Lakers 23.0 SG 29.0 6-1 175.0 7000000.0
Metta World Peace Los Angeles Lakers 37.0 SF 36.0 6-7 260.0 St. John's 947276.0
Nick Young Los Angeles Lakers 0.0 SF 31.0 6-7 210.0 USC 5219169.0
Eric Bledsoe Phoenix Suns 2.0 PG 26.0 6-1 190.0 Kentucky 13500000.0
Devin Booker Phoenix Suns 1.0 SG 19.0 6-6 206.0 Kentucky 2127840.0
Chase Budinger Phoenix Suns 10.0 SF 28.0 6-7 209.0 Arizona 206192.0
Tyson Chandler Phoenix Suns 4.0 C 33.0 7-1 240.0 13000000.0
Archie Goodwin Phoenix Suns 20.0 SG 21.0 6-5 200.0 Kentucky 1160160.0
John Jenkins Phoenix Suns 23.0 SG 25.0 6-4 215.0 Vanderbilt 981348.0
Brandon Knight Phoenix Suns 3.0 PG 24.0 6-3 189.0 Kentucky 13500000.0
Alex Len Phoenix Suns 21.0 C 22.0 7-1 260.0 Maryland 3807120.0
Jon Leuer Phoenix Suns 30.0 PF 27.0 6-10 228.0 Wisconsin 1035000.0
Phil Pressey Phoenix Suns 25.0 PG 25.0 5-11 175.0 Missouri 55722.0
Ronnie Price Phoenix Suns 14.0 PG 32.0 6-2 190.0 Utah Valley 947276.0
Mirza Teletovic Phoenix Suns 35.0 PF 30.0 6-9 242.0 5500000.0
P.J. Tucker Phoenix Suns 17.0 SF 31.0 6-6 245.0 Texas 5500000.0
T.J. Warren Phoenix Suns 12.0 SF 22.0 6-8 230.0 North Carolina State 2041080.0
Alan Williams Phoenix Suns 15.0 C 23.0 6-8 260.0 UC Santa Barbara 83397.0
Quincy Acy Sacramento Kings 13.0 SF 25.0 6-7 240.0 Baylor 981348.0
James Anderson Sacramento Kings 5.0 SG 27.0 6-6 213.0 Oklahoma State 1015421.0
Marco Belinelli Sacramento Kings 3.0 SG 30.0 6-5 210.0 6060606.0
Caron Butler Sacramento Kings 31.0 SF 36.0 6-7 228.0 Connecticut 1449187.0
Omri Casspi Sacramento Kings 18.0 SF 27.0 6-9 225.0 2836186.0
Willie Cauley-Stein Sacramento Kings 0.0 C 22.0 7-0 240.0 Kentucky 3398280.0
Darren Collison Sacramento Kings 7.0 PG 28.0 6-0 175.0 UCLA 5013559.0
DeMarcus Cousins Sacramento Kings 15.0 C 25.0 6-11 270.0 Kentucky 15851950.0
Seth Curry Sacramento Kings 30.0 SG 25.0 6-2 185.0 Duke 947276.0
Duje Dukan Sacramento Kings 26.0 PF 24.0 6-9 220.0 Wisconsin 525093.0
Rudy Gay Sacramento Kings 8.0 SF 29.0 6-8 230.0 Connecticut 12403101.0
Kosta Koufos Sacramento Kings 41.0 C 27.0 7-0 265.0 Ohio State 7700000.0
Ben McLemore Sacramento Kings 23.0 SG 23.0 6-5 195.0 Kansas 3156600.0
Eric Moreland Sacramento Kings 25.0 PF 24.0 6-10 238.0 Oregon State 845059.0
Rajon Rondo Sacramento Kings 9.0 PG 30.0 6-1 186.0 Kentucky 9500000.0
Cameron Bairstow Chicago Bulls 41.0 PF 25.0 6-9 250.0 New Mexico 845059.0
Aaron Brooks Chicago Bulls 0.0 PG 31.0 6-0 161.0 Oregon 2250000.0
Jimmy Butler Chicago Bulls 21.0 SG 26.0 6-7 220.0 Marquette 16407500.0
Mike Dunleavy Chicago Bulls 34.0 SG 35.0 6-9 230.0 Duke 4500000.0
Cristiano Felicio Chicago Bulls 6.0 PF 23.0 6-10 275.0 525093.0
Pau Gasol Chicago Bulls 16.0 C 35.0 7-0 250.0 7448760.0
Taj Gibson Chicago Bulls 22.0 PF 30.0 6-9 225.0 USC 8500000.0
Justin Holiday Chicago Bulls 7.0 SG 27.0 6-6 185.0 Washington 947276.0
Doug McDermott Chicago Bulls 3.0 SF 24.0 6-8 225.0 Creighton 2380440.0
Nikola Mirotic Chicago Bulls 44.0 PF 25.0 6-10 220.0 5543725.0
E'Twaun Moore Chicago Bulls 55.0 SG 27.0 6-4 191.0 Purdue 1015421.0
Joakim Noah Chicago Bulls 13.0 C 31.0 6-11 232.0 Florida 13400000.0
Bobby Portis Chicago Bulls 5.0 PF 21.0 6-11 230.0 Arkansas 1391160.0
Derrick Rose Chicago Bulls 1.0 PG 27.0 6-3 190.0 Memphis 20093064.0
Tony Snell Chicago Bulls 20.0 SF 24.0 6-7 200.0 New Mexico 1535880.0
Matthew Dellavedova Cleveland Cavaliers 8.0 PG 25.0 6-4 198.0 Saint Mary's 1147276.0
Channing Frye Cleveland Cavaliers 9.0 PF 33.0 6-11 255.0 Arizona 8193029.0
Kyrie Irving Cleveland Cavaliers 2.0 PG 24.0 6-3 193.0 Duke 16407501.0
LeBron James Cleveland Cavaliers 23.0 SF 31.0 6-8 250.0 22970500.0
Richard Jefferson Cleveland Cavaliers 24.0 SF 35.0 6-7 233.0 Arizona 947276.0
Dahntay Jones Cleveland Cavaliers 30.0 SG 35.0 6-6 225.0 Duke
James Jones Cleveland Cavaliers 1.0 SG 35.0 6-8 218.0 Miami (FL) 947276.0
Sasha Kaun Cleveland Cavaliers 14.0 C 31.0 6-11 260.0 Kansas 1276000.0
Kevin Love Cleveland Cavaliers 0.0 PF 27.0 6-10 251.0 UCLA 19689000.0
Jordan McRae Cleveland Cavaliers 12.0 SG 25.0 6-5 179.0 Tennessee 111196.0
Timofey Mozgov Cleveland Cavaliers 20.0 C 29.0 7-1 275.0 4950000.0
Iman Shumpert Cleveland Cavaliers 4.0 SG 25.0 6-5 220.0 Georgia Tech 8988765.0
J.R. Smith Cleveland Cavaliers 5.0 SG 30.0 6-6 225.0 5000000.0
Tristan Thompson Cleveland Cavaliers 13.0 C 25.0 6-9 238.0 Texas 14260870.0
Mo Williams Cleveland Cavaliers 52.0 PG 33.0 6-1 198.0 Alabama 2100000.0
Joel Anthony Detroit Pistons 50.0 C 33.0 6-9 245.0 UNLV 2500000.0
Aron Baynes Detroit Pistons 12.0 C 29.0 6-10 260.0 Washington State 6500000.0
Steve Blake Detroit Pistons 22.0 PG 36.0 6-3 172.0 Maryland 2170465.0
Lorenzo Brown Detroit Pistons 17.0 PG 25.0 6-5 189.0 North Carolina State 111444.0
Reggie Bullock Detroit Pistons 25.0 SF 25.0 6-7 205.0 North Carolina 1252440.0
Kentavious Caldwell-Pope Detroit Pistons 5.0 SG 23.0 6-5 205.0 Georgia 2891760.0
Spencer Dinwiddie Detroit Pistons 8.0 PG 23.0 6-6 200.0 Colorado 845059.0
Andre Drummond Detroit Pistons 0.0 C 22.0 6-11 279.0 Connecticut 3272091.0
Tobias Harris Detroit Pistons 34.0 SF 23.0 6-9 235.0 Tennessee 16000000.0
Darrun Hilliard Detroit Pistons 6.0 SF 23.0 6-6 205.0 Villanova 600000.0
Reggie Jackson Detroit Pistons 1.0 PG 26.0 6-3 208.0 Boston College 13913044.0
Stanley Johnson Detroit Pistons 3.0 SF 20.0 6-7 245.0 Arizona 2841960.0
Jodie Meeks Detroit Pistons 20.0 SG 28.0 6-4 210.0 Kentucky 6270000.0
Marcus Morris Detroit Pistons 13.0 PF 26.0 6-9 235.0 Kansas 5000000.0
Anthony Tolliver Detroit Pistons 43.0 PF 31.0 6-8 240.0 Creighton 3000000.0
Lavoy Allen Indiana Pacers 5.0 PF 27.0 6-9 255.0 Temple 4050000.0
Rakeem Christmas Indiana Pacers 25.0 PF 24.0 6-9 250.0 Syracuse 1007026.0
Monta Ellis Indiana Pacers 11.0 SG 30.0 6-3 185.0 10300000.0
Paul George Indiana Pacers 13.0 SF 26.0 6-9 220.0 Fresno State 17120106.0
George Hill Indiana Pacers 3.0 PG 30.0 6-3 188.0 IUPUI 8000000.0
Jordan Hill Indiana Pacers 27.0 C 28.0 6-10 235.0 Arizona 4000000.0
Solomon Hill Indiana Pacers 44.0 SF 25.0 6-7 225.0 Arizona 1358880.0
Ty Lawson Indiana Pacers 10.0 PG 28.0 5-11 195.0 North Carolina 211744.0
Ian Mahinmi Indiana Pacers 28.0 C 29.0 6-11 250.0 4000000.0
C.J. Miles Indiana Pacers 0.0 SF 29.0 6-6 231.0 4394225.0
Glenn Robinson III Indiana Pacers 40.0 SG 22.0 6-7 222.0 Michigan 1100000.0
Rodney Stuckey Indiana Pacers 2.0 PG 30.0 6-5 205.0 Eastern Washington 7000000.0
Myles Turner Indiana Pacers 33.0 PF 20.0 6-11 243.0 Texas 2357760.0
Shayne Whittington Indiana Pacers 42.0 PF 25.0 6-11 250.0 Western Michigan 845059.0
Joe Young Indiana Pacers 1.0 PG 23.0 6-2 180.0 Oregon 1007026.0
Giannis Antetokounmpo Milwaukee Bucks 34.0 SF 21.0 6-11 222.0 1953960.0
Jerryd Bayless Milwaukee Bucks 19.0 PG 27.0 6-3 200.0 Arizona 3000000.0
Michael Carter-Williams Milwaukee Bucks 5.0 PG 24.0 6-6 190.0 Syracuse 2399040.0
Jared Cunningham Milwaukee Bucks 9.0 SG 25.0 6-4 195.0 Oregon State 947276.0
Tyler Ennis Milwaukee Bucks 11.0 PG 21.0 6-3 194.0 Syracuse 1662360.0
John Henson Milwaukee Bucks 31.0 PF 25.0 6-11 229.0 North Carolina 2943221.0
Damien Inglis Milwaukee Bucks 17.0 SF 21.0 6-8 246.0 855000.0
O.J. Mayo Milwaukee Bucks 3.0 SG 28.0 6-5 210.0 USC 8000000.0
Khris Middleton Milwaukee Bucks 22.0 SG 24.0 6-8 234.0 Texas A&M 14700000.0
Greg Monroe Milwaukee Bucks 15.0 C 26.0 6-11 265.0 Georgetown 16407500.0
Steve Novak Milwaukee Bucks 6.0 SF 32.0 6-10 225.0 Marquette 295327.0
Johnny O'Bryant III Milwaukee Bucks 77.0 PF 23.0 6-9 257.0 LSU 845059.0
Jabari Parker Milwaukee Bucks 12.0 PF 21.0 6-8 250.0 Duke 5152440.0
Miles Plumlee Milwaukee Bucks 18.0 C 27.0 6-11 249.0 Duke 2109294.0
Greivis Vasquez Milwaukee Bucks 21.0 PG 29.0 6-6 217.0 Maryland 6600000.0
Rashad Vaughn Milwaukee Bucks 20.0 SG 19.0 6-6 202.0 UNLV 1733040.0
Justin Anderson Dallas Mavericks 1.0 SG 22.0 6-6 228.0 Virginia 1449000.0
J.J. Barea Dallas Mavericks 5.0 PG 31.0 6-0 185.0 Northeastern 4290000.0
Jeremy Evans Dallas Mavericks 21.0 SF 28.0 6-9 200.0 Western Kentucky 1100602.0
Raymond Felton Dallas Mavericks 2.0 PG 31.0 6-1 205.0 North Carolina 3950313.0
Devin Harris Dallas Mavericks 34.0 PG 33.0 6-3 185.0 Wisconsin 4053446.0
David Lee Dallas Mavericks 42.0 PF 33.0 6-9 245.0 Florida 2085671.0
Wesley Matthews Dallas Mavericks 23.0 SG 29.0 6-5 220.0 Marquette 16407500.0
JaVale McGee Dallas Mavericks 11.0 C 28.0 7-0 270.0 Nevada 1270964.0
Salah Mejri Dallas Mavericks 50.0 C 29.0 7-2 245.0 525093.0
Dirk Nowitzki Dallas Mavericks 41.0 PF 37.0 7-0 245.0 8333334.0
Zaza Pachulia Dallas Mavericks 27.0 C 32.0 6-11 275.0 5200000.0
Chandler Parsons Dallas Mavericks 25.0 SF 27.0 6-10 230.0 Florida 15361500.0
Dwight Powell Dallas Mavericks 7.0 PF 24.0 6-11 240.0 Stanford 845059.0
Charlie Villanueva Dallas Mavericks 3.0 PF 31.0 6-11 232.0 Connecticut 947276.0
Deron Williams Dallas Mavericks 8.0 PG 31.0 6-3 200.0 Illinois 5378974.0
Trevor Ariza Houston Rockets 1.0 SF 30.0 6-8 215.0 UCLA 8193030.0
Michael Beasley Houston Rockets 8.0 SF 27.0 6-10 235.0 Kansas State 306527.0
Patrick Beverley Houston Rockets 2.0 PG 27.0 6-1 185.0 Arkansas 6486486.0
Corey Brewer Houston Rockets 33.0 SG 30.0 6-9 186.0 Florida 8229375.0
Clint Capela Houston Rockets 15.0 PF 22.0 6-10 240.0 1242720.0
Sam Dekker Houston Rockets 7.0 SF 22.0 6-9 230.0 Wisconsin 1646400.0
Andrew Goudelock Houston Rockets 0.0 PG 27.0 6-3 200.0 Charleston 200600.0
James Harden Houston Rockets 13.0 SG 26.0 6-5 220.0 Arizona State 15756438.0
Montrezl Harrell Houston Rockets 35.0 PF 22.0 6-8 240.0 Louisville 1000000.0
Dwight Howard Houston Rockets 12.0 C 30.0 6-11 265.0 22359364.0
Terrence Jones Houston Rockets 6.0 PF 24.0 6-9 252.0 Kentucky 2489530.0
K.J. McDaniels Houston Rockets 32.0 SG 23.0 6-6 205.0 Clemson 3189794.0
Donatas Motiejunas Houston Rockets 20.0 PF 25.0 7-0 222.0 2288205.0
Josh Smith Houston Rockets 5.0 C 30.0 6-9 225.0 947276.0
Jason Terry Houston Rockets 31.0 SG 38.0 6-2 185.0 Arizona 947276.0
Jordan Adams Memphis Grizzlies 3.0 SG 21.0 6-5 209.0 UCLA 1404600.0
Tony Allen Memphis Grizzlies 9.0 SG 34.0 6-4 213.0 Oklahoma State 5158539.0
Chris Andersen Memphis Grizzlies 7.0 PF 37.0 6-10 245.0 Blinn College 5000000.0
Matt Barnes Memphis Grizzlies 22.0 SF 36.0 6-7 226.0 UCLA 3542500.0
Vince Carter Memphis Grizzlies 15.0 SG 39.0 6-6 220.0 North Carolina 4088019.0
Mike Conley Memphis Grizzlies 11.0 PG 28.0 6-1 175.0 Ohio State 9588426.0
Bryce Cotton Memphis Grizzlies 8.0 PG 23.0 6-1 165.0 Providence 700902.0
Jordan Farmar Memphis Grizzlies 4.0 PG 29.0 6-2 180.0 UCLA
Marc Gasol Memphis Grizzlies 33.0 C 31.0 7-1 255.0 19688000.0
JaMychal Green Memphis Grizzlies 0.0 PF 25.0 6-9 227.0 Alabama 845059.0
P.J. Hairston Memphis Grizzlies 19.0 SF 23.0 6-6 230.0 North Carolina 1201440.0
Jarell Martin Memphis Grizzlies 10.0 PF 22.0 6-10 239.0 LSU 1230840.0
Ray McCallum Memphis Grizzlies 5.0 PG 24.0 6-3 190.0 Detroit
Xavier Munford Memphis Grizzlies 14.0 PG 24.0 6-3 180.0 Rhode Island
Zach Randolph Memphis Grizzlies 50.0 PF 34.0 6-9 260.0 Michigan State 9638555.0
Lance Stephenson Memphis Grizzlies 1.0 SF 25.0 6-5 230.0 Cincinnati 9000000.0
Alex Stepheson Memphis Grizzlies 35.0 PF 28.0 6-10 270.0 USC
Brandan Wright Memphis Grizzlies 34.0 PF 28.0 6-10 210.0 North Carolina 5464000.0
Alexis Ajinca New Orleans Pelicans 42.0 C 28.0 7-2 248.0 4389607.0
Ryan Anderson New Orleans Pelicans 33.0 PF 28.0 6-10 240.0 California 8500000.0
Omer Asik New Orleans Pelicans 3.0 C 29.0 7-0 255.0 9213483.0
Luke Babbitt New Orleans Pelicans 8.0 SF 26.0 6-9 225.0 Nevada 1100602.0
Norris Cole New Orleans Pelicans 30.0 PG 27.0 6-2 175.0 Cleveland State 3036927.0
Dante Cunningham New Orleans Pelicans 44.0 PF 29.0 6-8 230.0 Villanova 2850000.0
Anthony Davis New Orleans Pelicans 23.0 PF 23.0 6-10 253.0 Kentucky 7070730.0
Bryce Dejean-Jones New Orleans Pelicans 31.0 SG 23.0 6-6 203.0 Iowa State 169883.0
Toney Douglas New Orleans Pelicans 16.0 PG 30.0 6-2 195.0 Florida State 1164858.0
James Ennis New Orleans Pelicans 4.0 SF 25.0 6-7 210.0 Long Beach State 845059.0
Tyreke Evans New Orleans Pelicans 1.0 SG 26.0 6-6 220.0 Memphis 10734586.0
Tim Frazier New Orleans Pelicans 2.0 PG 25.0 6-1 170.0 Penn State 845059.0
Alonzo Gee New Orleans Pelicans 15.0 SF 29.0 6-6 225.0 Alabama 1320000.0
Eric Gordon New Orleans Pelicans 10.0 SG 27.0 6-4 215.0 Indiana 15514031.0
Jordan Hamilton New Orleans Pelicans 25.0 SG 25.0 6-7 220.0 Texas 1015421.0
Jrue Holiday New Orleans Pelicans 11.0 PG 25.0 6-4 205.0 UCLA 10595507.0
Orlando Johnson New Orleans Pelicans 0.0 SG 27.0 6-5 220.0 UC Santa Barbara 55722.0
Kendrick Perkins New Orleans Pelicans 5.0 C 31.0 6-10 270.0 947276.0
Quincy Pondexter New Orleans Pelicans 20.0 SF 28.0 6-7 220.0 Washington 3382023.0
LaMarcus Aldridge San Antonio Spurs 12.0 PF 30.0 6-11 240.0 Texas 19689000.0
Kyle Anderson San Antonio Spurs 1.0 SF 22.0 6-9 230.0 UCLA 1142880.0
Matt Bonner San Antonio Spurs 15.0 C 36.0 6-10 235.0 Florida 947276.0
Boris Diaw San Antonio Spurs 33.0 C 34.0 6-8 250.0 7500000.0
Tim Duncan San Antonio Spurs 21.0 C 40.0 6-11 250.0 Wake Forest 5250000.0
Manu Ginobili San Antonio Spurs 20.0 SG 38.0 6-6 205.0 2814000.0
Danny Green San Antonio Spurs 14.0 SG 28.0 6-6 215.0 North Carolina 10000000.0
Kawhi Leonard San Antonio Spurs 2.0 SF 24.0 6-7 230.0 San Diego State 16407500.0
Boban Marjanovic San Antonio Spurs 40.0 C 27.0 7-3 290.0 1200000.0
Kevin Martin San Antonio Spurs 23.0 SG 33.0 6-7 199.0 Western Carolina 200600.0
Andre Miller San Antonio Spurs 24.0 PG 40.0 6-3 200.0 Utah 250750.0
Patty Mills San Antonio Spurs 8.0 PG 27.0 6-0 185.0 Saint Mary's 3578947.0
Tony Parker San Antonio Spurs 9.0 PG 34.0 6-2 185.0 13437500.0
Jonathon Simmons San Antonio Spurs 17.0 SG 26.0 6-6 195.0 Houston 525093.0
David West San Antonio Spurs 30.0 PF 35.0 6-9 250.0 Xavier 1499187.0
Kent Bazemore Atlanta Hawks 24.0 SF 26.0 6-5 201.0 Old Dominion 2000000.0
Tim Hardaway Jr. Atlanta Hawks 10.0 SG 24.0 6-6 205.0 Michigan 1304520.0
Kirk Hinrich Atlanta Hawks 12.0 SG 35.0 6-4 190.0 Kansas 2854940.0
Al Horford Atlanta Hawks 15.0 C 30.0 6-10 245.0 Florida 12000000.0
Kris Humphries Atlanta Hawks 43.0 PF 31.0 6-9 235.0 Minnesota 1000000.0
Kyle Korver Atlanta Hawks 26.0 SG 35.0 6-7 212.0 Creighton 5746479.0
Paul Millsap Atlanta Hawks 4.0 PF 31.0 6-8 246.0 Louisiana Tech 18671659.0
Mike Muscala Atlanta Hawks 31.0 PF 24.0 6-11 240.0 Bucknell 947276.0
Lamar Patterson Atlanta Hawks 13.0 SG 24.0 6-5 225.0 Pittsburgh 525093.0
Dennis Schroder Atlanta Hawks 17.0 PG 22.0 6-1 172.0 1763400.0
Mike Scott Atlanta Hawks 32.0 PF 27.0 6-8 237.0 Virginia 3333333.0
Thabo Sefolosha Atlanta Hawks 25.0 SF 32.0 6-7 220.0 4000000.0
Tiago Splitter Atlanta Hawks 11.0 C 31.0 6-11 245.0 9756250.0
Walter Tavares Atlanta Hawks 22.0 C 24.0 7-3 260.0 1000000.0
Jeff Teague Atlanta Hawks 0.0 PG 27.0 6-2 186.0 Wake Forest 8000000.0
Nicolas Batum Charlotte Hornets 5.0 SG 27.0 6-8 200.0 13125306.0
Troy Daniels Charlotte Hornets 30.0 SG 24.0 6-4 205.0 Virginia Commonwealth 947276.0
Jorge Gutierrez Charlotte Hornets 12.0 PG 27.0 6-3 189.0 California 189455.0
Tyler Hansbrough Charlotte Hornets 50.0 PF 30.0 6-9 250.0 North Carolina 947276.0
Aaron Harrison Charlotte Hornets 9.0 SG 21.0 6-6 210.0 Kentucky 525093.0
Spencer Hawes Charlotte Hornets 0.0 PF 28.0 7-1 245.0 Washington 6110034.0
Al Jefferson Charlotte Hornets 25.0 C 31.0 6-10 289.0 13500000.0
Frank Kaminsky III Charlotte Hornets 44.0 C 23.0 7-0 240.0 Wisconsin 2612520.0
Michael Kidd-Gilchrist Charlotte Hornets 14.0 SF 22.0 6-7 232.0 Kentucky 6331404.0
Jeremy Lamb Charlotte Hornets 3.0 SG 24.0 6-5 185.0 Connecticut 3034356.0
Courtney Lee Charlotte Hornets 1.0 SG 30.0 6-5 200.0 Western Kentucky 5675000.0
Jeremy Lin Charlotte Hornets 7.0 PG 27.0 6-3 200.0 Harvard 2139000.0
Kemba Walker Charlotte Hornets 15.0 PG 26.0 6-1 184.0 Connecticut 12000000.0
Marvin Williams Charlotte Hornets 2.0 PF 29.0 6-9 237.0 North Carolina 7000000.0
Cody Zeller Charlotte Hornets 40.0 C 23.0 7-0 240.0 Indiana 4204200.0
Chris Bosh Miami Heat 1.0 PF 32.0 6-11 235.0 Georgia Tech 22192730.0
Luol Deng Miami Heat 9.0 SF 31.0 6-9 220.0 Duke 10151612.0
Goran Dragic Miami Heat 7.0 PG 30.0 6-3 190.0 14783000.0
Gerald Green Miami Heat 14.0 SF 30.0 6-7 205.0 947276.0
Udonis Haslem Miami Heat 40.0 PF 36.0 6-8 235.0 Florida 2854940.0
Joe Johnson Miami Heat 2.0 SF 34.0 6-7 240.0 Arkansas 261894.0
Tyler Johnson Miami Heat 8.0 SG 24.0 6-4 186.0 Fresno State 845059.0
Josh McRoberts Miami Heat 4.0 PF 29.0 6-10 240.0 Duke 5543725.0
Josh Richardson Miami Heat 0.0 SG 22.0 6-6 200.0 Tennessee 525093.0
Amar'e Stoudemire Miami Heat 5.0 PF 33.0 6-10 245.0 947276.0
Dwyane Wade Miami Heat 3.0 SG 34.0 6-4 220.0 Marquette 20000000.0
Briante Weber Miami Heat 12.0 PG 23.0 6-2 165.0 Virginia Commonwealth
Hassan Whiteside Miami Heat 21.0 C 26.0 7-0 265.0 Marshall 981348.0
Justise Winslow Miami Heat 20.0 SF 20.0 6-7 225.0 Duke 2481720.0
Dorell Wright Miami Heat 11.0 SF 30.0 6-9 205.0
Dewayne Dedmon Orlando Magic 3.0 C 26.0 7-0 245.0 USC 947276.0
Evan Fournier Orlando Magic 10.0 SG 23.0 6-7 205.0 2288205.0
Aaron Gordon Orlando Magic 0.0 PF 20.0 6-9 220.0 Arizona 4171680.0
Mario Hezonja Orlando Magic 23.0 SG 21.0 6-8 218.0 3741480.0
Ersan Ilyasova Orlando Magic 7.0 PF 29.0 6-10 235.0 7900000.0
Brandon Jennings Orlando Magic 55.0 PG 26.0 6-1 169.0 8344497.0
Devyn Marble Orlando Magic 11.0 SF 23.0 6-6 200.0 Iowa 845059.0
Shabazz Napier Orlando Magic 13.0 PG 24.0 6-1 175.0 Connecticut 1294440.0
Andrew Nicholson Orlando Magic 44.0 PF 26.0 6-9 250.0 St. Bonaventure 2380593.0
Victor Oladipo Orlando Magic 5.0 SG 24.0 6-4 210.0 Indiana 5192520.0
Elfrid Payton Orlando Magic 4.0 PG 22.0 6-4 185.0 Louisiana-Lafayette 2505720.0
Jason Smith Orlando Magic 14.0 PF 30.0 7-0 240.0 Colorado State 4300000.0
Nikola Vucevic Orlando Magic 9.0 C 25.0 7-0 260.0 USC 11250000.0
C.J. Watson Orlando Magic 32.0 PG 32.0 6-2 175.0 Tennessee 5000000.0
Alan Anderson Washington Wizards 6.0 SG 33.0 6-6 220.0 Michigan State 4000000.0
Bradley Beal Washington Wizards 3.0 SG 22.0 6-5 207.0 Florida 5694674.0
Jared Dudley Washington Wizards 1.0 SF 30.0 6-7 225.0 Boston College 4375000.0
Jarell Eddie Washington Wizards 8.0 SG 24.0 6-7 218.0 Virginia Tech 561716.0
Drew Gooden Washington Wizards 90.0 PF 34.0 6-10 250.0 Kansas 3300000.0
Marcin Gortat Washington Wizards 13.0 C 32.0 6-11 240.0 11217391.0
JJ Hickson Washington Wizards 21.0 C 27.0 6-9 242.0 North Carolina State 273038.0
Nene Hilario Washington Wizards 42.0 C 33.0 6-11 250.0 13000000.0
Markieff Morris Washington Wizards 5.0 PF 26.0 6-10 245.0 Kansas 8000000.0
Kelly Oubre Jr. Washington Wizards 12.0 SF 20.0 6-7 205.0 Kansas 1920240.0
Otto Porter Jr. Washington Wizards 22.0 SF 23.0 6-8 198.0 Georgetown 4662960.0
Ramon Sessions Washington Wizards 7.0 PG 30.0 6-3 190.0 Nevada 2170465.0
Garrett Temple Washington Wizards 17.0 SG 30.0 6-6 195.0 LSU 1100602.0
Marcus Thornton Washington Wizards 15.0 SF 29.0 6-4 205.0 LSU 200600.0
John Wall Washington Wizards 2.0 PG 25.0 6-4 195.0 Kentucky 15851950.0
Darrell Arthur Denver Nuggets 0.0 PF 28.0 6-9 235.0 Kansas 2814000.0
D.J. Augustin Denver Nuggets 12.0 PG 28.0 6-0 183.0 Texas 3000000.0
Will Barton Denver Nuggets 5.0 SF 25.0 6-6 175.0 Memphis 3533333.0
Wilson Chandler Denver Nuggets 21.0 SF 29.0 6-8 225.0 DePaul 10449438.0
Kenneth Faried Denver Nuggets 35.0 PF 26.0 6-8 228.0 Morehead State 11235955.0
Danilo Gallinari Denver Nuggets 8.0 SF 27.0 6-10 225.0 14000000.0
Gary Harris Denver Nuggets 14.0 SG 21.0 6-4 210.0 Michigan State 1584480.0
Nikola Jokic Denver Nuggets 15.0 C 21.0 6-10 250.0 1300000.0
Joffrey Lauvergne Denver Nuggets 77.0 C 24.0 6-11 220.0 1709719.0
Mike Miller Denver Nuggets 3.0 SG 36.0 6-8 218.0 Florida 947276.0
Emmanuel Mudiay Denver Nuggets 0.0 PG 20.0 6-5 200.0 3102240.0
Jameer Nelson Denver Nuggets 1.0 PG 34.0 6-0 190.0 Saint Joseph's 4345000.0
Jusuf Nurkic Denver Nuggets 23.0 C 21.0 7-0 280.0 1842000.0
JaKarr Sampson Denver Nuggets 9.0 SG 23.0 6-9 214.0 St. John's 258489.0
Axel Toupane Denver Nuggets 6.0 SG 23.0 6-7 210.0
Nemanja Bjelica Minnesota Timberwolves 88.0 PF 28.0 6-10 240.0 3950001.0
Gorgui Dieng Minnesota Timberwolves 5.0 C 26.0 6-11 241.0 Louisville 1474440.0
Kevin Garnett Minnesota Timberwolves 21.0 PF 40.0 6-11 240.0 8500000.0
Tyus Jones Minnesota Timberwolves 1.0 PG 20.0 6-2 195.0 Duke 1282080.0
Zach LaVine Minnesota Timberwolves 8.0 PG 21.0 6-5 189.0 UCLA 2148360.0
Shabazz Muhammad Minnesota Timberwolves 15.0 SF 23.0 6-6 223.0 UCLA 2056920.0
Adreian Payne Minnesota Timberwolves 33.0 PF 25.0 6-10 237.0 Michigan State 1938840.0
Nikola Pekovic Minnesota Timberwolves 14.0 C 30.0 6-11 307.0 12100000.0
Tayshaun Prince Minnesota Timberwolves 12.0 SF 36.0 6-9 212.0 Kentucky 947276.0
Ricky Rubio Minnesota Timberwolves 9.0 PG 25.0 6-4 194.0 12700000.0
Damjan Rudez Minnesota Timberwolves 10.0 SF 29.0 6-9 230.0 1149500.0
Greg Smith Minnesota Timberwolves 4.0 PF 25.0 6-10 250.0 Fresno State
Karl-Anthony Towns Minnesota Timberwolves 32.0 C 20.0 7-0 244.0 Kentucky 5703600.0
Andrew Wiggins Minnesota Timberwolves 22.0 SG 21.0 6-8 199.0 Kansas 5758680.0
Steven Adams Oklahoma City Thunder 12.0 C 22.0 7-0 255.0 Pittsburgh 2279040.0
Nick Collison Oklahoma City Thunder 4.0 PF 35.0 6-10 255.0 Kansas 3750000.0
Kevin Durant Oklahoma City Thunder 35.0 SF 27.0 6-9 240.0 Texas 20158622.0
Randy Foye Oklahoma City Thunder 6.0 SG 32.0 6-4 213.0 Villanova 3135000.0
Josh Huestis Oklahoma City Thunder 34.0 SF 24.0 6-7 230.0 Stanford 1140240.0
Serge Ibaka Oklahoma City Thunder 9.0 PF 26.0 6-10 245.0 12250000.0
Enes Kanter Oklahoma City Thunder 11.0 C 24.0 6-11 245.0 Kentucky 16407500.0
Mitch McGary Oklahoma City Thunder 33.0 PF 24.0 6-10 255.0 Michigan 1463040.0
Nazr Mohammed Oklahoma City Thunder 13.0 C 38.0 6-10 250.0 Kentucky 222888.0
Anthony Morrow Oklahoma City Thunder 2.0 SG 30.0 6-5 210.0 Georgia Tech 3344000.0
Cameron Payne Oklahoma City Thunder 22.0 PG 21.0 6-3 185.0 Murray State 2021520.0
Andre Roberson Oklahoma City Thunder 21.0 SG 24.0 6-7 210.0 Colorado 1210800.0
Kyle Singler Oklahoma City Thunder 5.0 SF 28.0 6-8 228.0 Duke 4500000.0
Dion Waiters Oklahoma City Thunder 3.0 SG 24.0 6-4 220.0 Syracuse 5138430.0
Russell Westbrook Oklahoma City Thunder 0.0 PG 27.0 6-3 200.0 UCLA 16744218.0
Cliff Alexander Portland Trail Blazers 34.0 PF 20.0 6-8 240.0 Kansas 525093.0
Al-Farouq Aminu Portland Trail Blazers 8.0 SF 25.0 6-9 215.0 Wake Forest 8042895.0
Pat Connaughton Portland Trail Blazers 5.0 SG 23.0 6-5 206.0 Notre Dame 625093.0
Allen Crabbe Portland Trail Blazers 23.0 SG 24.0 6-6 210.0 California 947276.0
Ed Davis Portland Trail Blazers 17.0 C 27.0 6-10 240.0 North Carolina 6980802.0
Maurice Harkless Portland Trail Blazers 4.0 SF 23.0 6-9 215.0 St. John's 2894059.0
Gerald Henderson Portland Trail Blazers 9.0 SG 28.0 6-5 215.0 Duke 6000000.0
Chris Kaman Portland Trail Blazers 35.0 C 34.0 7-0 265.0 Central Michigan 5016000.0
Meyers Leonard Portland Trail Blazers 11.0 PF 24.0 7-1 245.0 Illinois 3075880.0
Damian Lillard Portland Trail Blazers 0.0 PG 25.0 6-3 195.0 Weber State 4236287.0
C.J. McCollum Portland Trail Blazers 3.0 SG 24.0 6-4 200.0 Lehigh 2525160.0
Luis Montero Portland Trail Blazers 44.0 SG 23.0 6-7 185.0 Westchester CC 525093.0
Mason Plumlee Portland Trail Blazers 24.0 C 26.0 6-11 235.0 Duke 1415520.0
Brian Roberts Portland Trail Blazers 2.0 PG 30.0 6-1 173.0 Dayton 2854940.0
Noah Vonleh Portland Trail Blazers 21.0 PF 20.0 6-9 240.0 Indiana 2637720.0
Trevor Booker Utah Jazz 33.0 PF 28.0 6-8 228.0 Clemson 4775000.0
Trey Burke Utah Jazz 3.0 PG 23.0 6-1 191.0 Michigan 2658240.0
Alec Burks Utah Jazz 10.0 SG 24.0 6-6 214.0 Colorado 9463484.0
Dante Exum Utah Jazz 11.0 PG 20.0 6-6 190.0 3777720.0
Derrick Favors Utah Jazz 15.0 PF 24.0 6-10 265.0 Georgia Tech 12000000.0
Rudy Gobert Utah Jazz 27.0 C 23.0 7-1 245.0 1175880.0
Gordon Hayward Utah Jazz 20.0 SF 26.0 6-8 226.0 Butler 15409570.0
Rodney Hood Utah Jazz 5.0 SG 23.0 6-8 206.0 Duke 1348440.0
Joe Ingles Utah Jazz 2.0 SF 28.0 6-8 226.0 2050000.0
Chris Johnson Utah Jazz 23.0 SF 26.0 6-6 206.0 Dayton 981348.0
Trey Lyles Utah Jazz 41.0 PF 20.0 6-10 234.0 Kentucky 2239800.0
Shelvin Mack Utah Jazz 8.0 PG 26.0 6-3 203.0 Butler 2433333.0
Raul Neto Utah Jazz 25.0 PG 24.0 6-1 179.0 900000.0
Tibor Pleiss Utah Jazz 21.0 C 26.0 7-3 256.0 2900000.0
Jeff Withey Utah Jazz 24.0 C 26.0 7-0 231.0 Kansas 947276.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment