-
Notifications
You must be signed in to change notification settings - Fork 2
/
FourFactorsRAPM.csv
We can't make this file beautiful and searchable because it's too large.
2627 lines (2626 loc) · 652 KB
/
FourFactorsRAPM.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
FourFactorsRAPM
playerId,playerName,LA_RAPM,LA_RAPM_Rank,LA_RAPM__Def,LA_RAPM__Def_Rank,LA_RAPM__Off,LA_RAPM__Off_Rank,RA_EFG,RA_EFG_Rank,RA_EFG__Def,RA_EFG__Def_Rank,RA_EFG__Off,RA_EFG__Off_Rank,RA_FTR,RA_FTR_Rank,RA_FTR__Def,RA_FTR__Def_Rank,RA_FTR__Off,RA_FTR__Off_Rank,RA_ORBD,RA_ORBD_Rank,RA_ORBD__Def,RA_ORBD__Def_Rank,RA_ORBD__Off,RA_ORBD__Off_Rank,RA_TOV,RA_TOV_Rank,RA_TOV__Def,RA_TOV__Def_Rank,RA_TOV__Off,RA_TOV__Off_Rank,RAPM,RAPM_Rank,RAPM__Def,RAPM__Def_Rank,RAPM__Off,RAPM__Off_Rank,season,teamId,teamName,primaryKey,playerRole
101108,"Chris Paul",1.37,37,0.58,76,0.79,63,0.42,117,0.08,208,0.33,109,-0.12,315,0.53,61,-0.64,504,-0.02,269,0.83,40,-0.85,496,0.93,11,0.5,36,0.43,51,1.67,44,0.92,53,0.75,94,"2020-21",1610612756,"PHX","101108_2020-21","Ball Handler, Primary Playmaker"
1629130,"Duncan Robinson",2.18,11,0.85,41,1.33,21,2.32,2,0.68,27,1.65,1,-0.68,480,0.57,49,-1.25,529,0.92,71,1.53,4,-0.62,444,0.03,244,-0.24,422,0.27,90,3.67,4,1.33,22,2.34,6,"2019-20",1610612748,"MIA","1629130_2019-20","No Role Available"
1628415,"Dillon Brooks",1.33,42,0.84,39,0.49,105,0.88,37,0.36,84,0.52,70,-0.24,356,-0.2,373,-0.04,289,-0.3,357,0.06,236,-0.35,392,0.41,82,0.51,33,-0.1,358,1.84,34,1,41,0.84,81,"2020-21",1610612763,"MEM","1628415_2020-21","Wing, Shooter"
101107,"Marvin Williams",-0.1,242,0.09,193,-0.19,291,-0.71,452,-0.11,310,-0.61,462,0.52,79,0.66,43,-0.14,313,0.26,164,0.93,18,-0.67,421,0.52,61,-0.13,325,0.66,16,-0.39,313,-0.23,310,-0.16,268,"2016-17",1610612766,"CHA","101107_2016-17","No Role Available"
200752,"Rudy Gay",0.75,95,0.86,36,-0.11,297,-0.49,440,0.02,251,-0.51,482,0.38,112,0.28,114,0.1,196,-0.02,263,0.72,51,-0.74,467,0.02,248,0.09,189,-0.07,319,-0.04,259,0.48,119,-0.52,406,"2019-20",1610612759,"SAS","200752_2019-20","No Role Available"
101139,"CJ Miles",0.33,153,-0.11,333,0.44,117,-0.22,359,-0.12,336,-0.1,329,-0.23,351,-0.17,359,-0.05,297,0.51,138,0.02,260,0.48,101,0.19,159,0.07,200,0.12,162,-0.08,266,-0.25,345,0.16,192,"2019-20",1610612764,"WAS","101139_2019-20","No Role Available"
101108,"Chris Paul",0.98,64,0.66,52,0.32,126,0.23,147,0.01,282,0.25,110,-0.53,438,0.41,83,-0.94,524,-1.31,495,-0.37,417,-0.94,498,1.39,2,1.03,1,0.36,48,1.69,42,1.13,25,0.56,97,"2018-19",1610612745,"HOU","101108_2018-19","No Role Available"
1626144,"Emmanuel Mudiay",-0.87,448,-0.11,332,-0.76,466,0.06,227,0.11,188,-0.06,291,0.18,173,-0.03,279,0.21,136,-0.06,279,0.21,161,-0.27,364,-0.94,515,-0.57,503,-0.37,475,-1.2,471,-0.36,380,-0.84,466,"2019-20",1610612762,"UTA","1626144_2019-20","No Role Available"
101150,"Lou Williams",-0.82,463,-0.69,486,-0.14,322,-0.57,460,-0.17,387,-0.4,449,0.55,90,0.01,241,0.53,53,-1.06,485,-0.82,506,-0.23,355,0.13,191,-0.27,452,0.4,62,-0.43,356,-0.64,457,0.21,179,"2020-21",1610612746,"LAC","101150_2020-21","Ball Handler, Primary Playmaker"
101108,"Chris Paul",3.2,4,1.31,9,1.88,13,1.5,9,0.56,31,0.94,16,1.15,25,0.28,113,0.88,23,0.78,70,1.01,13,-0.23,320,0.93,14,0.28,93,0.65,17,4.01,2,1.7,7,2.31,8,"2016-17",1610612746,"LAC","101108_2016-17","No Role Available"
1629620,"Justin Robinson",-0.48,400,-0.33,401,-0.15,333,-0.22,357,-0.09,346,-0.13,329,0.05,247,-0.04,276,0.09,218,-0.7,446,-0.78,502,0.08,220,-0.39,457,-0.16,394,-0.24,438,-0.76,421,-0.51,440,-0.25,342,"2020-21",1610612760,"OKC","1629620_2020-21","No Role Available"
101141,"Ersan Ilyasova",0.78,92,0.66,63,0.11,214,-0.67,480,-0.7,509,0.03,231,-0.35,406,0.29,109,-0.65,489,-0.24,327,0.72,50,-0.96,496,0.6,53,0.13,170,0.47,42,-0.7,414,-0.78,458,0.08,229,"2019-20",1610612749,"MIL","101141_2019-20","No Role Available"
1626145,"Tyus Jones",0.62,110,0.33,127,0.3,153,-0.5,445,-0.47,473,-0.03,267,-0.49,442,-0.03,280,-0.46,463,-0.21,315,-0.09,317,-0.12,307,0.89,13,0.33,72,0.56,23,-0.1,274,-0.34,375,0.24,167,"2019-20",1610612763,"MEM","1626145_2019-20","No Role Available"
101107,"Marvin Williams",0.07,197,-0.2,365,0.27,138,-0.3,403,-0.32,450,0.02,226,0.27,149,0.7,28,-0.43,461,-0.02,260,0.48,84,-0.5,430,0.29,113,-0.29,440,0.58,15,-0.07,269,-0.37,404,0.31,145,"2018-19",1610612766,"CHA","101107_2018-19","No Role Available"
202331,"Paul George",1.16,53,0.61,66,0.56,74,-0.06,288,-0.2,404,0.14,160,0.96,25,0.36,87,0.6,48,0.37,141,0.06,245,0.31,145,0.61,43,0.82,8,-0.22,433,0.57,122,0.17,195,0.4,122,"2017-18",1610612760,"OKC","202331_2017-18","No Role Available"
1626147,"Justin Anderson",-0.19,315,0.01,272,-0.18,327,0.07,218,0.03,236,0.03,233,-0.04,277,0.17,157,-0.21,378,0.1,223,0.14,194,-0.04,270,-0.04,297,-0.04,314,0.01,259,0.11,212,0.01,256,0.1,219,"2019-20",1610612751,"BKN","1626147_2019-20","No Role Available"
1629641,"Romeo Langford",-0.7,439,0.11,197,-0.81,489,0.05,229,0.25,110,-0.2,366,-0.42,414,-0.08,302,-0.34,430,-0.13,300,0.08,227,-0.2,341,-0.51,482,-0.28,456,-0.23,433,-0.48,368,0.2,189,-0.68,440,"2020-21",1610612738,"BOS","1629641_2020-21","No Role Available"
1629035,"Carsen Edwards",-0.98,463,-0.19,356,-0.8,472,-0.61,470,0.21,145,-0.82,518,-0.32,387,-0.53,479,0.21,138,0.02,252,0.5,86,-0.48,417,-0.34,428,-0.04,312,-0.3,446,-1.24,476,0.33,164,-1.57,522,"2019-20",1610612738,"BOS","1629035_2019-20","No Role Available"
1626149,"Montrezl Harrell",0.8,86,0.13,192,0.68,83,1.1,21,0.72,21,0.37,88,1.52,5,0.3,106,1.23,6,0.55,129,-0.21,368,0.76,58,-0.27,398,0.07,198,-0.34,464,1.77,29,0.84,59,0.94,50,"2019-20",1610612746,"LAC","1626149_2019-20","No Role Available"
1626153,"Delon Wright",0.65,104,0.44,102,0.2,166,-1.08,518,-0.69,522,-0.4,448,1.18,19,0.69,41,0.48,65,-1.59,522,-1.05,524,-0.54,437,1.84,1,1.12,2,0.72,10,-0.02,246,0.03,248,-0.04,250,"2020-21",1610612765,"DET","1626153_2020-21","Ball Handler, Secondary Playmaker"
1626153,"Delon Wright",0.04,235,-0.4,414,0.45,115,-0.36,408,-0.03,286,-0.33,440,-0.23,349,0.07,205,-0.29,417,-0.15,300,-0.32,403,0.17,186,0.03,246,-0.28,436,0.31,80,-0.19,298,-0.19,330,0.01,251,"2019-20",1610612742,"DAL","1626153_2019-20","No Role Available"
203952,"Andrew Wiggins",-0.51,406,-0.56,465,0.05,216,0.24,144,0.01,253,0.23,117,-0.07,288,-0.4,451,0.33,91,-0.38,375,-0.47,438,0.1,203,-0.32,412,-0.49,505,0.17,121,0.09,213,-0.63,454,0.72,68,"2018-19",1610612750,"MIN","203952_2018-19","No Role Available"
1626156,"DAngelo Russell",-1.04,471,-1.16,515,0.12,209,-0.62,473,-0.7,510,0.08,202,-0.54,450,-0.36,434,-0.18,362,-1.8,514,-1.45,526,-0.35,389,0.27,129,0.29,84,-0.02,278,-1.49,496,-1.34,510,-0.15,308,"2019-20",1610612744,"GSW","1626156_2019-20","No Role Available"
1626157,"Karl-Anthony Towns",1.55,31,-0.19,358,1.74,8,0.24,149,-0.64,505,0.88,10,1.18,18,0.56,51,0.62,46,1.03,58,0.42,105,0.6,83,-0.35,430,-0.42,475,0.08,196,0.68,120,-1.34,511,2.02,8,"2019-20",1610612750,"MIN","1626157_2019-20","No Role Available"
1626162,"Kelly Oubre Jr.",-0.36,368,-0.36,402,0.01,253,-0.64,476,-0.2,379,-0.44,470,0.06,231,-0.36,433,0.42,74,-0.55,402,0.01,277,-0.54,432,0.67,40,0.58,27,0.09,186,-0.59,394,0.07,234,-0.66,433,"2019-20",1610612756,"PHX","1626162_2019-20","No Role Available"
1626169,"Stanley Johnson",0.01,253,0.27,144,-0.28,365,0.29,135,0.24,131,0.05,218,-0.33,394,-0.06,305,-0.27,408,-0.03,266,0.01,270,-0.03,264,-0.27,397,0.08,194,-0.35,465,0.12,208,0.43,136,-0.31,363,"2019-20",1610612761,"TOR","1626169_2019-20","No Role Available"
1626187,"Michael Frazier",-0.74,426,-0.14,342,-0.6,433,-0.51,450,-0.12,335,-0.39,459,-0.34,397,-0.37,437,0.03,239,-0.94,464,-0.22,374,-0.72,462,0.33,113,0.37,63,-0.04,292,-0.83,433,-0.1,305,-0.72,443,"2019-20",1610612745,"HOU","1626187_2019-20","No Role Available"
1626159,"Justise Winslow",-0.07,263,0.23,159,-0.3,376,-0.39,419,0.13,171,-0.52,483,-0.57,454,-0.6,502,0.04,248,-0.06,279,0.59,79,-0.64,467,0.01,280,0.02,244,-0.03,295,-0.97,447,0.29,162,-1.26,506,"2020-21",1610612763,"MEM","1626159_2020-21","Wing, Playmaker"
1630203,"Grant Riller",-0.15,297,-0.14,325,0.01,248,-0.08,292,-0.08,334,0.01,240,0.06,243,0.05,215,0.01,267,-0.46,396,-0.29,390,-0.17,331,0.13,185,0.13,165,0.01,272,-0.12,287,-0.05,284,-0.07,260,"2020-21",1610612766,"CHA","1630203_2020-21","No Role Available"
1626181,"Norman Powell",-0.25,332,0.04,251,-0.29,366,0.43,100,0.38,84,0.06,213,-0.26,359,0.11,185,-0.37,443,-2.88,529,-1.3,520,-1.58,526,0.25,133,0.14,163,0.11,167,0.13,204,0.44,134,-0.31,362,"2019-20",1610612761,"TOR","1626181_2019-20","No Role Available"
203924,"Jerami Grant",-1.33,497,-1.03,504,-0.3,370,-0.1,300,-0.42,459,0.32,102,-0.38,413,-0.4,451,0.02,243,-1.22,488,-0.04,289,-1.19,512,-0.28,402,-0.37,457,0.09,188,-0.9,441,-1.32,509,0.42,136,"2019-20",1610612743,"DEN","203924_2019-20","No Role Available"
1626188,"Quinn Cook",0.47,126,0.31,131,0.16,185,0.19,161,0.32,98,-0.14,358,0.23,156,0.3,103,-0.07,304,0.32,172,0.28,144,0.04,240,0.07,209,-0.17,388,0.24,101,0.37,159,0.37,153,0.01,253,"2019-20",1610612747,"LAL","1626188_2019-20","No Role Available"
101109,"Raymond Felton",-0.02,248,0.13,184,-0.15,338,-0.05,294,0.42,57,-0.48,488,-0.72,477,-0.16,365,-0.55,487,-0.41,384,-0.21,376,-0.2,348,0.37,88,0.35,81,0.02,244,0.03,234,0.74,72,-0.71,455,"2018-19",1610612760,"OKC","101109_2018-19","No Role Available"
1626195,"Willy Hernangomez",-0.4,375,-0.26,385,-0.14,309,-0.19,342,0.16,165,-0.35,450,0.69,52,0.36,82,0.33,93,0.68,109,0.38,115,0.3,148,-0.28,405,-0.1,356,-0.18,388,-0.2,306,0.4,144,-0.61,422,"2019-20",1610612766,"CHA","1626195_2019-20","No Role Available"
1628420,"Monte Morris",0.28,174,-0.33,398,0.61,85,0.41,121,-0.07,324,0.48,78,0.2,181,-0.14,341,0.34,104,-0.12,298,-0.56,471,0.44,113,0.21,154,0.07,209,0.14,158,0.9,100,-0.02,269,0.92,67,"2020-21",1610612743,"DEN","1628420_2020-21","Wing, Playmaker"
1630266,"Will Magnay",-0.13,289,-0.02,270,-0.11,306,-0.11,308,-0.08,331,-0.03,255,0.01,270,0.04,226,-0.04,288,0.05,235,0.02,251,0.03,236,-0.09,335,0.01,271,-0.09,351,-0.19,305,-0.1,298,-0.09,271,"2020-21",1610612740,"NOP","1630266_2020-21","No Role Available"
1626161,"Willie Cauley-Stein",-0.23,323,0.13,188,-0.36,389,0.51,88,0.62,24,-0.11,314,0.06,244,-0.08,308,0.14,190,-0.55,417,0.15,190,-0.7,476,0.35,99,-0.08,333,0.43,50,1.03,87,1.01,39,0.02,231,"2020-21",1610612742,"DAL","1626161_2020-21","Big, Finisher"
1626196,"Josh Richardson",0.38,145,0.12,196,0.26,161,0.27,144,0.22,142,0.05,219,-1.01,508,-0.63,499,-0.37,446,0.48,144,-0.22,372,0.7,67,0.04,230,-0.19,400,0.23,105,0.35,164,0.11,219,0.24,169,"2019-20",1610612755,"PHI","1626196_2019-20","No Role Available"
1626203,"Treveon Graham",0.01,249,0.1,213,-0.1,293,-0.53,453,0.15,170,-0.68,505,0.15,185,-0.07,316,0.23,130,0.27,179,0.04,250,0.23,170,0.08,208,0.01,275,0.08,198,-0.95,449,0.01,269,-0.93,480,"2019-20",1610612750,"MIN","1626203_2019-20","No Role Available"
1626204,"Larry Nance Jr.",-0.06,268,0.1,206,-0.17,323,-0.27,379,-0.16,362,-0.11,336,-0.2,344,-0.18,369,-0.02,279,1.61,22,0.83,32,0.78,57,0.18,161,0.2,129,0.01,272,-0.2,305,0.02,253,-0.22,332,"2019-20",1610612739,"CLE","1626204_2019-20","No Role Available"
201975,"Jodie Meeks",-0.1,281,-0.28,388,0.18,163,0.16,165,-0.07,332,0.24,113,-0.61,455,-0.3,428,-0.31,420,-0.36,370,-0.07,322,-0.29,377,-0.16,358,-0.24,420,0.08,194,0.07,219,-0.26,373,0.33,136,"2018-19",1610612761,"TOR","201975_2018-19","No Role Available"
203382,"Aron Baynes",0.03,211,0.78,37,-0.74,476,0.4,93,0.23,118,0.17,138,-0.32,398,0.24,135,-0.56,488,0.38,150,0.27,144,0.11,196,0.21,144,0.28,99,-0.07,326,1.02,76,0.8,62,0.22,161,"2018-19",1610612738,"BOS","203382_2018-19","No Role Available"
1626220,"Royce ONeale",1.6,27,0.86,37,0.75,71,1.25,13,0.62,35,0.63,29,1.14,21,0.76,30,0.38,76,0.78,90,0.88,26,-0.09,292,-0.45,455,-0.35,455,-0.1,341,1.94,25,0.9,51,1.04,42,"2019-20",1610612762,"UTA","1626220_2019-20","No Role Available"
1627784,"Jarrod Uthoff",0.09,219,0.13,190,-0.04,265,0.08,206,0.05,227,0.04,228,0.06,229,0.1,188,-0.04,287,0.3,177,-0.05,296,0.35,133,-0.07,308,0.01,272,-0.07,323,0.2,190,0.15,204,0.05,235,"2019-20",1610612763,"MEM","1627784_2019-20","No Role Available"
1626162,"Kelly Oubre Jr.",-0.74,447,0.12,190,-0.86,503,-0.8,502,0.17,146,-0.97,530,-0.48,436,-0.59,497,0.12,198,-1.87,530,-0.7,490,-1.18,520,0.09,214,0.13,164,-0.04,310,-2.16,518,-0.17,338,-1.99,531,"2020-21",1610612744,"GSW","1626162_2020-21","Wing, Shooter"
101112,"Channing Frye",-1.31,500,-0.71,483,-0.6,459,-1.19,519,-0.66,515,-0.53,495,-0.28,381,0.01,266,-0.27,397,-1.52,504,-0.57,455,-0.95,499,0.24,131,-0.16,375,0.4,43,-1.78,503,-1.21,514,-0.57,431,"2018-19",1610612739,"CLE","101112_2018-19","No Role Available"
101123,"Gerald Green",-0.08,271,-1.32,524,1.24,20,0.35,102,-0.06,324,0.42,60,-1.26,524,-1.16,525,-0.1,319,-1.16,484,-0.31,403,-0.85,482,-0.06,303,-0.51,507,0.44,37,0.35,161,-0.87,486,1.22,36,"2018-19",1610612745,"HOU","101123_2018-19","No Role Available"
1630267,"Facundo Campazzo",-0.23,321,0.26,146,-0.49,425,-0.07,288,0.02,253,-0.09,299,-1.01,515,-0.95,533,-0.06,293,0.01,263,0.53,91,-0.54,439,0.1,203,0.46,46,-0.35,478,-0.06,264,0.31,156,-0.37,373,"2020-21",1610612743,"DEN","1630267_2020-21","Ball Handler, Secondary Playmaker"
1628422,"Damyean Dotson",-1.09,488,-0.28,383,-0.81,493,-1.06,517,0.08,207,-1.14,536,0.7,58,0.69,40,0.01,264,-0.27,346,-0.29,393,0.02,242,-0.44,466,-0.15,390,-0.29,456,-2.12,517,0.24,173,-2.36,537,"2020-21",1610612739,"CLE","1628422_2020-21","Wing, Playmaker"
1627733,"Dragan Bender",0.12,211,0.65,66,-0.54,421,0.67,59,0.25,126,0.42,70,-0.26,361,0.04,222,-0.3,419,-0.05,272,0.49,89,-0.54,430,-0.29,407,-0.07,333,-0.22,408,0.31,171,0.4,145,-0.1,296,"2019-20",1610612749,"MIL","1627733_2019-20","No Role Available"
1627734,"Domantas Sabonis",1.1,58,0.69,58,0.41,125,0.4,105,0.21,144,0.18,152,0.36,120,0.77,27,-0.42,453,2.13,13,1.21,8,0.91,46,0.01,272,-0.18,395,0.17,128,1.24,62,0.59,99,0.65,94,"2019-20",1610612754,"IND","1627734_2019-20","No Role Available"
1626163,"Frank Kaminsky",-0.55,414,-0.52,458,-0.04,261,-0.05,274,0.06,220,-0.12,322,-0.23,354,0.29,113,-0.52,483,0.72,94,0.76,48,-0.04,280,-0.07,318,-0.5,507,0.44,46,-0.07,266,-0.16,335,0.08,218,"2020-21",1610612756,"PHX","1626163_2020-21","Big, Shooter"
101139,"CJ Miles",-0.2,323,0.19,158,-0.39,404,-0.33,415,0.18,142,-0.51,493,-0.25,367,-0.46,467,0.21,130,-0.88,460,-0.04,307,-0.84,480,0.25,127,0.18,134,0.06,205,-0.6,397,0.09,200,-0.69,452,"2018-19",1610612761,"TOR","101139_2018-19","No Role Available"
101141,"Ersan Ilyasova",1.56,34,0.59,70,0.98,37,0.29,122,0.06,208,0.23,116,-0.42,418,-0.2,384,-0.21,377,1.96,14,0.69,47,1.27,18,0.46,62,0.39,66,0.07,199,1.58,45,0.76,71,0.82,62,"2018-19",1610612749,"MIL","101141_2018-19","No Role Available"
1627823,"Juancho Hernangomez",-1.3,496,-0.92,491,-0.39,398,-0.34,403,-0.48,477,0.14,165,-0.58,461,-0.23,385,-0.35,438,0.32,174,0.59,66,-0.28,369,-0.07,309,-0.19,404,0.13,158,-0.36,347,-0.29,356,-0.07,280,"2019-20",1610612743,"DEN","1627823_2019-20","No Role Available"
1627826,"Ivica Zubac",2.12,12,1.63,6,0.49,105,0.33,124,0.6,40,-0.27,418,0.26,145,0.29,107,-0.04,283,1.01,61,0.29,142,0.71,66,0.48,74,0.19,133,0.29,86,1.8,28,1.58,13,0.22,176,"2019-20",1610612746,"LAC","1627826_2019-20","No Role Available"
1626168,"Trey Lyles",-0.67,436,-0.02,272,-0.65,463,-1.03,516,-0.19,403,-0.84,525,0.01,273,-0.12,336,0.11,202,-0.34,366,0.19,178,-0.53,433,-0.02,289,-0.28,453,0.26,97,-1.81,511,-0.51,439,-1.3,510,"2020-21",1610612759,"SAS","1626168_2020-21","Wing, Shooter"
1627827,"Dorian Finney-Smith",0.98,68,-0.38,405,1.36,20,1.26,12,0.65,29,0.61,33,0.89,36,0.61,45,0.28,109,-0.21,318,-0.32,405,0.11,209,-0.45,457,-0.55,500,0.1,180,1.94,24,0.43,137,1.51,21,"2019-20",1610612742,"DAL","1627827_2019-20","No Role Available"
1626169,"Stanley Johnson",-1.15,493,0.08,209,-1.23,523,-1.19,523,-0.59,510,-0.6,498,0.01,263,0.15,169,-0.13,340,-0.93,475,-0.09,306,-0.83,492,0.14,184,0.47,42,-0.33,473,-1.94,515,-0.74,472,-1.2,502,"2020-21",1610612761,"TOR","1626169_2020-21","Wing, Shooter"
1627832,"Fred VanVleet",0.48,125,0.89,35,-0.41,403,0.68,57,0.44,62,0.24,125,0.07,226,0.27,117,-0.21,377,-2.03,523,-0.93,503,-1.1,505,0.36,104,0.31,76,0.06,212,0.93,88,1.02,46,-0.08,289,"2019-20",1610612761,"TOR","1627832_2019-20","No Role Available"
202681,"Kyrie Irving",1.49,33,-0.3,389,1.79,9,0.72,59,-0.17,389,0.9,21,-0.75,493,-0.39,453,-0.35,431,-1.36,504,-1.08,525,-0.28,375,0.85,19,0.01,281,0.86,2,1.12,83,-0.8,480,1.91,17,"2020-21",1610612751,"BKN","202681_2020-21","Ball Handler, Primary Playmaker"
1627846,"Abdel Nader",-2.03,521,-0.5,435,-1.53,522,-0.68,486,0.01,254,-0.69,507,0.01,264,0.43,70,-0.43,456,-1.05,474,0.35,126,-1.4,523,-0.34,427,-0.34,454,0.01,263,-1.66,502,-0.13,314,-1.53,519,"2019-20",1610612760,"OKC","1627846_2019-20","No Role Available"
1627853,"Ryan Arcidiacono",-0.93,460,-0.09,328,-0.84,480,-0.67,481,-0.17,370,-0.5,480,-1.44,525,-0.58,489,-0.86,516,-0.05,273,-0.29,396,0.24,166,0.75,25,0.38,58,0.37,64,-0.58,390,0.31,168,-0.89,471,"2019-20",1610612741,"CHI","1627853_2019-20","No Role Available"
1627854,"Bryn Forbes",-1.89,518,-0.87,486,-1.02,495,-1.05,511,-0.42,461,-0.63,500,-0.72,483,0.14,170,-0.86,515,-1.39,502,-0.22,373,-1.17,511,-0.41,449,-0.83,522,0.41,55,-2.37,523,-1.34,512,-1.02,486,"2019-20",1610612759,"SAS","1627854_2019-20","No Role Available"
1627759,"Jaylen Brown",-0.55,413,-0.29,387,-0.27,364,0.78,53,0.21,120,0.57,64,-0.05,288,-0.42,458,0.36,95,0.84,78,0.66,67,0.18,190,-1.16,532,-0.5,506,-0.66,523,0.43,160,-0.09,295,0.53,122,"2020-21",1610612738,"BOS","1627759_2020-21","Wing, Shooter"
1627863,"Danuel House Jr.",1.72,19,0.34,122,1.37,19,0.27,143,0.06,223,0.21,139,0.41,104,0.29,110,0.12,179,0.01,254,0.71,52,-0.7,459,0.49,71,-0.04,309,0.53,28,1.01,80,0.39,148,0.62,99,"2019-20",1610612745,"HOU","1627863_2019-20","No Role Available"
1628995,"Kevin Knox II",-0.84,468,0.01,257,-0.84,501,-0.28,380,0.16,155,-0.44,463,-0.44,419,-0.28,411,-0.16,349,-0.59,429,-0.18,347,-0.4,408,-0.21,394,0.18,136,-0.39,483,-1.05,459,0.08,220,-1.13,498,"2020-21",1610612752,"NYK","1628995_2020-21","Wing, Shooter"
1627884,"Derrick Jones Jr.",-0.47,390,-1.24,519,0.77,66,-0.12,308,-0.12,332,0.01,248,0.53,80,-0.16,356,0.69,32,-0.06,276,0.06,246,-0.11,300,-0.08,318,-0.49,489,0.41,56,-0.12,280,-0.62,440,0.5,117,"2019-20",1610612748,"MIA","1627884_2019-20","No Role Available"
1626171,"Bobby Portis",-0.7,438,0.08,215,-0.77,486,0.14,193,-0.04,296,0.17,165,-0.9,505,0.01,250,-0.9,530,1.33,36,0.14,194,1.19,26,-0.17,377,-0.02,292,-0.14,388,0.31,173,-0.17,339,0.49,134,"2020-21",1610612749,"MIL","1626171_2020-21","Big, Playmaker"
1627885,"Shaquille Harrison",0.72,98,0.69,59,0.03,238,0.35,117,0.3,109,0.06,212,-0.07,291,-0.31,413,0.24,126,0.17,208,-0.1,324,0.28,152,1.27,4,0.99,4,0.27,88,1.45,44,1.1,36,0.35,151,"2019-20",1610612741,"CHI","1627885_2019-20","No Role Available"
1627936,"Alex Caruso",1.54,32,1.08,23,0.46,113,1.18,17,0.8,16,0.39,83,0.36,116,-0.52,474,0.88,19,0.03,247,0.42,106,-0.39,400,0.6,54,0.51,33,0.09,185,2.27,14,1.48,18,0.79,73,"2019-20",1610612747,"LAL","1627936_2019-20","No Role Available"
1627982,"Josh Gray",-0.39,372,-0.02,285,-0.37,392,0.03,249,0.03,239,0.01,250,-0.04,276,0.15,168,-0.18,371,-0.27,334,-0.15,344,-0.12,309,-0.17,359,0.06,210,-0.23,419,-0.15,287,0.12,213,-0.27,343,"2019-20",1610612740,"NOP","1627982_2019-20","No Role Available"
1629673,"Jordan Poole",-1.97,519,-0.1,329,-1.87,529,-0.94,506,-0.45,465,-0.49,478,0.12,197,0.34,87,-0.22,385,-1.99,521,-0.56,460,-1.43,525,0.43,88,0.4,51,0.02,240,-0.91,443,0.01,263,-0.91,474,"2019-20",1610612744,"GSW","1629673_2019-20","No Role Available"
203463,"Ben McLemore",-0.32,356,-0.2,350,-0.13,317,-0.42,427,0.15,157,-0.58,494,-1.32,533,-1.36,539,0.04,244,-0.57,423,-0.17,340,-0.4,406,0.61,39,0.28,84,0.33,79,-0.58,390,0.05,233,-0.64,433,"2020-21",1610612745,"HOU","203463_2020-21","Wing, Shooter"
1626172,"Kevon Looney",1.11,64,0.91,35,0.2,168,0.6,70,0.3,100,0.3,117,-0.82,500,-0.06,293,-0.76,515,1.52,23,0.11,207,1.41,17,0.24,141,0.05,221,0.19,131,1.15,79,0.4,131,0.75,91,"2020-21",1610612744,"GSW","1626172_2020-21","Big, Finisher"
1627777,"Georges Niang",1.95,19,1.34,11,0.61,83,1.36,14,0.59,26,0.77,38,-0.49,440,0.34,103,-0.83,522,0.6,111,0.59,80,0.02,247,0.01,267,0.2,120,-0.19,408,2.01,26,1.15,28,0.86,78,"2020-21",1610612762,"UTA","1627777_2020-21","Wing, Shooter"
101162,"Marcin Gortat",-0.89,460,-0.31,396,-0.58,455,-0.29,396,-0.11,353,-0.18,381,-0.18,345,0.87,15,-1.05,526,-0.18,317,-0.51,445,0.33,121,-0.38,435,-0.09,329,-0.29,457,-0.82,430,-0.26,371,-0.56,428,"2018-19",1610612746,"LAC","101162_2018-19","No Role Available"
1628365,"Markelle Fultz",0.18,194,0.34,125,-0.15,314,-0.39,418,-0.5,480,0.11,182,0.34,124,0.48,55,-0.14,348,0.35,164,0.57,70,-0.22,346,0.43,85,-0.02,293,0.45,47,0.08,221,-0.32,368,0.41,138,"2019-20",1610612753,"ORL","1628365_2019-20","No Role Available"
1628366,"Lonzo Ball",-0.76,430,0.07,225,-0.84,479,0.46,93,0.4,72,0.05,215,0.33,125,0.45,60,-0.12,334,0.95,68,0.65,58,0.3,146,-0.52,467,-0.17,390,-0.35,466,0.23,185,0.55,103,-0.32,366,"2019-20",1610612740,"NOP","1628366_2019-20","No Role Available"
203962,"Josh Huestis",1.04,59,0.48,88,0.56,71,0.92,33,0.44,60,0.48,54,0.01,264,-0.04,299,0.02,239,0.9,63,0.16,193,0.74,58,-0.11,351,-0.34,473,0.23,105,1.21,64,0.35,139,0.86,64,"2017-18",1610612760,"OKC","203962_2017-18","No Role Available"
101181,"Jose Calderon",-0.85,452,-0.03,274,-0.82,490,-1.1,515,-0.25,425,-0.84,522,-0.78,484,-0.62,489,-0.16,348,-0.33,358,0.34,121,-0.67,462,-0.1,327,0.14,148,-0.24,433,-2.1,516,-0.39,409,-1.71,519,"2018-19",1610612765,"DET","101181_2018-19","No Role Available"
1627820,"Tyrone Wallace",0.27,170,0.43,98,-0.16,315,-0.23,364,-0.03,287,-0.2,387,-0.05,279,-0.26,393,0.2,139,0.26,187,0.12,208,0.14,198,0.23,138,0.42,46,-0.19,399,-0.2,307,0.3,172,-0.51,403,"2019-20",1610612737,"ATL","1627820_2019-20","No Role Available"
1628978,"Donte DiVincenzo",1.84,23,0.93,33,0.91,49,0.06,223,-0.37,465,0.43,87,0.78,45,0.9,21,-0.12,330,0.53,121,0.24,170,0.3,155,0.92,13,0.27,89,0.65,14,1.22,73,-0.12,320,1.34,44,"2020-21",1610612749,"MIL","1628978_2020-21","Wing, Shooter"
1628368,"DeAaron Fox",-0.18,311,-1.14,513,0.96,41,-0.24,375,-0.74,513,0.5,47,0.15,188,-0.63,496,0.78,22,0.05,241,0.47,93,-0.42,408,0.02,257,-0.54,498,0.56,22,-0.72,418,-1.66,519,0.94,49,"2019-20",1610612758,"SAC","1628368_2019-20","No Role Available"
1628369,"Jayson Tatum",2.81,5,1.17,18,1.65,12,1.49,7,0.86,11,0.63,28,0.59,68,0.23,137,0.36,81,0.65,115,0.78,40,-0.13,317,1.28,3,0.33,71,0.94,2,3.85,3,1.76,7,2.08,7,"2019-20",1610612738,"BOS","1628369_2019-20","No Role Available"
203954,"Joel Embiid",2.35,9,0.93,32,1.42,17,1.11,24,0.4,67,0.71,42,2.19,2,0.69,44,1.5,2,0.09,223,0.3,151,-0.21,346,0.15,173,-0.05,310,0.2,126,3,6,1.05,37,1.96,16,"2020-21",1610612755,"PHI","203954_2020-21","Big, Playmaker"
101109,"Raymond Felton",-1.34,465,-0.58,414,-0.77,436,-0.67,445,0.01,239,-0.67,469,-0.71,444,-0.17,327,-0.54,428,-1.41,468,-0.64,442,-0.77,441,-0.04,266,-0.24,390,0.2,112,-1.78,463,-0.76,422,-1.01,447,"2016-17",1610612746,"LAC","101109_2016-17","No Role Available"
101112,"Channing Frye",0.95,64,0.05,210,0.9,50,0.34,119,-0.15,335,0.49,57,-0.02,242,0.29,111,-0.31,379,-0.72,403,0.84,22,-1.56,479,-0.51,430,-0.69,482,0.18,123,-0.34,300,-0.49,382,0.15,166,"2016-17",1610612739,"CLE","101112_2016-17","No Role Available"
1626174,"Christian Wood",-0.02,244,0.64,69,-0.66,466,0.67,64,0.35,86,0.31,113,0.96,30,0.65,47,0.3,114,-0.28,350,0.07,231,-0.35,390,-0.55,488,-0.03,297,-0.52,506,0.36,170,0.65,82,-0.28,351,"2020-21",1610612745,"HOU","1626174_2020-21","Big, Shooter"
1626147,"Justin Anderson",0.07,192,-0.16,351,0.23,148,-0.27,388,-0.1,346,-0.17,376,0.17,189,-0.34,433,0.51,53,-0.09,288,0.05,250,-0.14,329,0.05,231,0.01,245,0.05,218,-0.58,393,-0.33,394,-0.24,343,"2018-19",1610612737,"ATL","1626147_2018-19","No Role Available"
203089,"John Henson",-0.12,294,0.01,253,-0.13,327,-0.04,280,0.01,264,-0.03,279,0.01,254,-0.21,392,0.21,135,-0.03,263,0.08,231,-0.11,321,-0.38,438,-0.27,434,-0.11,358,-0.37,351,-0.17,339,-0.19,328,"2018-19",1610612749,"MIL","203089_2018-19","No Role Available"
1628370,"Malik Monk",-2.13,524,-1.3,520,-0.83,476,-1.23,519,-0.35,437,-0.88,524,0.41,105,0.35,85,0.06,215,-2.45,528,-1.78,529,-0.67,453,-0.13,343,-0.25,427,0.12,161,-2.48,525,-0.94,482,-1.54,520,"2019-20",1610612766,"CHA","1628370_2019-20","No Role Available"
1628371,"Jonathan Isaac",0.86,80,1.22,14,-0.37,389,-0.03,271,0.29,113,-0.31,434,0.97,31,0.65,40,0.32,99,-0.67,422,-0.42,436,-0.25,355,0.71,33,0.57,29,0.15,148,0.77,107,1.21,30,-0.44,393,"2019-20",1610612753,"ORL","1628371_2019-20","No Role Available"
1628373,"Frank Ntilikina",-0.48,391,0.54,86,-1.02,494,-0.21,355,0.07,210,-0.28,426,-0.45,429,-0.28,403,-0.17,355,-0.39,367,0.29,143,-0.68,457,0.29,125,0.15,161,0.14,150,-0.1,273,0.38,149,-0.48,398,"2019-20",1610612752,"NYK","1628373_2019-20","No Role Available"
1627780,"Gary Payton II",-0.02,243,0.06,228,-0.08,288,0.06,225,0.03,240,0.02,223,-0.09,300,0.05,216,-0.14,341,0.01,260,0.01,252,0.01,263,-0.06,310,0.03,237,-0.08,346,0.03,235,0.09,214,-0.06,257,"2020-21",1610612744,"GSW","1627780_2020-21","No Role Available"
1628374,"Lauri Markkanen",-0.12,287,0.08,223,-0.2,337,-0.49,439,0.01,260,-0.5,481,0.2,166,0.06,206,0.14,168,-0.79,442,-0.12,331,-0.67,454,0.4,95,0.3,83,0.11,175,-0.47,366,0.54,107,-1.01,484,"2019-20",1610612741,"CHI","1628374_2019-20","No Role Available"
1628379,"Luke Kennard",-0.13,294,-0.52,439,0.39,127,0.28,140,-0.06,301,0.34,96,-0.05,278,-0.06,303,0.01,248,0.14,218,0.07,236,0.06,232,-0.41,447,-0.27,432,-0.13,366,0.24,180,-0.31,361,0.55,111,"2019-20",1610612765,"DET","1628379_2019-20","No Role Available"
203999,"Nikola Jokic",2.93,2,-0.12,318,3.05,1,0.26,163,-1.01,537,1.27,7,0.16,197,0.45,76,-0.28,408,1.35,33,0.54,88,0.81,51,0.47,71,-0.12,370,0.6,19,1.77,39,-0.94,499,2.71,4,"2020-21",1610612743,"DEN","203999_2020-21","Big, Playmaker"
1629011,"Mitchell Robinson",-0.06,258,-0.1,307,0.04,230,-0.33,398,0.37,78,-0.69,514,0.71,55,0.19,151,0.52,56,2.25,6,0.86,35,1.39,19,-0.82,518,-0.42,492,-0.4,489,-0.18,303,0.82,60,-1,478,"2020-21",1610612752,"NYK","1629011_2020-21","Big, Finisher"
1629724,"Vic Law",-0.23,325,-0.02,289,-0.2,343,-0.13,312,0.02,253,-0.14,361,0.18,177,0.01,255,0.19,146,-0.46,387,-0.35,410,-0.11,302,0.18,168,0.18,144,0.01,265,-0.09,270,0.11,218,-0.21,331,"2019-20",1610612753,"ORL","1629724_2019-20","No Role Available"
1628381,"John Collins",0.01,252,-0.13,338,0.12,211,0.03,244,0.2,154,-0.17,369,0.2,168,0.29,108,-0.09,323,0.72,100,0.39,113,0.33,139,-0.68,491,-0.3,443,-0.38,477,-0.25,324,0.17,196,-0.42,387,"2019-20",1610612737,"ATL","1628381_2019-20","No Role Available"
1626181,"Norman Powell",-0.48,398,-0.36,418,-0.11,309,0.01,243,-0.04,302,0.05,210,-0.17,332,-0.47,473,0.3,118,-0.88,467,-0.37,416,-0.51,431,0.51,61,0.13,169,0.38,65,0.39,167,-0.1,300,0.49,129,"2020-21",1610612761,"TOR","1626181_2020-21","Wing, Shooter"
1626156,"DAngelo Russell",0.25,149,0.46,92,-0.21,354,0.45,85,0.31,100,0.15,154,-0.62,457,0.74,24,-1.35,529,-1.4,497,-1.26,521,-0.13,328,0.36,94,0.43,50,-0.07,328,0.08,215,0.58,93,-0.5,414,"2018-19",1610612751,"BKN","1626156_2018-19","No Role Available"
1627812,"Yogi Ferrell",-0.06,260,-0.04,278,-0.03,254,-0.06,281,-0.04,301,-0.02,248,-0.28,368,-0.07,300,-0.21,380,-0.04,275,-0.11,321,0.07,222,0.13,190,0.14,159,0.01,280,-0.08,268,0.03,247,-0.1,278,"2020-21",1610612739,"CLE","1627812_2020-21","Wing, Playmaker"
1628383,"Justin Patton",-0.32,359,-0.23,374,-0.09,289,-0.03,272,-0.06,302,0.03,234,-0.28,372,-0.15,349,-0.13,342,-0.05,275,0.07,239,-0.12,305,-0.21,381,-0.15,381,-0.06,315,-0.25,320,-0.23,338,0.01,258,"2019-20",1610612760,"OKC","1628383_2019-20","No Role Available"
1628388,"TJ Leaf",-0.1,277,0.29,137,-0.39,397,0.15,177,0.37,87,-0.22,397,-0.41,420,-0.12,339,-0.29,416,0.63,116,0.3,138,0.33,141,-0.38,436,-0.07,331,-0.32,456,-0.03,256,0.59,96,-0.63,425,"2019-20",1610612754,"IND","1628388_2019-20","No Role Available"
1628389,"Bam Adebayo",1.35,41,0.37,119,0.99,38,0.95,30,0.45,61,0.5,46,0.87,38,0.44,64,0.43,71,-0.34,357,0.43,103,-0.76,473,-0.29,406,-0.41,469,0.13,157,1.59,37,0.77,67,0.82,68,"2019-20",1610612748,"MIA","1628389_2019-20","No Role Available"
1628021,"David Nwaba",0.27,171,0.77,49,-0.5,414,0.62,63,0.71,23,-0.09,318,0.03,243,-0.23,382,0.26,117,0.3,178,0.09,223,0.21,174,-0.18,364,0.05,222,-0.23,420,0.86,97,1.14,33,-0.29,349,"2019-20",1610612751,"BKN","1628021_2019-20","No Role Available"
1629022,"Lonnie Walker IV",-1.79,531,-1.51,537,-0.28,370,-1.26,529,-0.95,536,-0.31,425,-0.08,297,0.27,116,-0.35,432,-1.39,509,-0.57,474,-0.83,491,0.03,257,-0.4,487,0.43,52,-2.33,529,-1.98,538,-0.35,368,"2020-21",1610612759,"SAS","1629022_2020-21","Wing, Shooter"
204060,"Joe Ingles",1.66,25,0.55,84,1.11,34,1.49,11,0.51,39,0.98,13,0.01,268,-0.14,340,0.14,189,0.2,193,0.44,110,-0.25,361,0.05,244,0.01,258,0.04,234,2.51,14,0.77,69,1.74,24,"2020-21",1610612762,"UTA","204060_2020-21","Wing, Playmaker"
1628035,"Alfonzo McKinnie",-1.03,469,-0.78,475,-0.26,361,-0.23,363,-0.45,467,0.23,131,-0.91,503,-0.44,460,-0.46,465,0.23,193,-0.39,420,0.62,79,-0.21,377,0.03,245,-0.23,421,-0.7,415,-0.9,474,0.2,182,"2019-20",1610612739,"CLE","1628035_2019-20","No Role Available"
1626159,"Justise Winslow",0.6,106,1.02,21,-0.42,418,1.3,12,0.98,2,0.32,85,0.02,236,0.19,148,-0.18,353,1.04,61,1,19,0.04,232,-0.32,410,-0.09,330,-0.22,421,1.79,36,1.72,4,0.07,214,"2018-19",1610612748,"MIA","1626159_2018-19","No Role Available"
1626192,"Pat Connaughton",1.47,34,0.58,77,0.89,51,0.92,32,0.59,27,0.34,108,0.91,33,0.23,132,0.68,32,1.33,34,0.37,129,0.96,41,-0.23,408,-0.3,460,0.06,212,1.97,28,0.81,61,1.16,49,"2020-21",1610612749,"MIL","1626192_2020-21","Wing, Shooter"
1626192,"Pat Connaughton",0.28,155,0.03,259,0.25,135,0.47,93,0.32,93,0.15,152,-0.64,485,-0.59,500,-0.05,292,1.2,37,0.83,25,0.37,125,-0.41,460,-0.59,525,0.18,130,0.49,142,0.03,244,0.46,115,"2017-18",1610612757,"POR","1626192_2017-18","No Role Available"
1629216,"Gabe Vincent",-0.23,326,0.01,258,-0.23,352,0.01,241,-0.04,304,0.06,205,-0.28,367,-0.08,310,-0.2,373,-0.96,477,-1.27,530,0.3,151,0.07,227,0.24,99,-0.17,399,-0.26,323,-0.11,310,-0.15,297,"2020-21",1610612748,"MIA","1629216_2020-21","Wing, Shooter"
204222,"Greg Whittington",-0.06,259,0.02,253,-0.08,284,0.09,206,0.09,204,0.01,236,-0.06,291,-0.03,272,-0.03,283,0.1,219,0.13,198,-0.03,276,0.01,279,-0.04,303,0.04,236,0.13,218,0.12,203,0.01,234,"2020-21",1610612743,"DEN","204222_2020-21","Wing, Shooter"
1629730,"Rayjon Tucker",-0.29,346,-0.22,371,-0.07,277,-0.52,451,-0.31,422,-0.21,393,0.2,169,-0.02,269,0.22,135,0.59,121,0.21,165,0.38,124,0.26,132,0.11,179,0.15,145,-0.52,375,-0.36,382,-0.16,312,"2019-20",1610612762,"UTA","1629730_2019-20","No Role Available"
1628367,"Josh Jackson",1.38,38,0.51,89,0.88,52,0.39,107,0.09,196,0.3,107,0.38,114,0.01,252,0.38,77,-0.16,302,0.01,266,-0.17,331,0.62,50,0.2,124,0.42,52,0.82,102,0.22,189,0.6,101,"2019-20",1610612763,"MEM","1628367_2019-20","No Role Available"
1626164,"Devin Booker",-0.48,402,-1.35,525,0.87,43,0.17,162,-0.43,464,0.6,38,-0.13,316,-0.61,487,0.48,62,-1.67,513,-1.67,528,0.01,254,-0.63,491,-0.38,470,-0.25,443,-0.48,370,-1.37,518,0.89,57,"2018-19",1610612756,"PHX","1626164_2018-19","No Role Available"
1628390,"Terrance Ferguson",-0.18,310,0.2,168,-0.38,396,-0.58,461,-0.34,434,-0.25,413,-0.71,482,0.17,156,-0.88,518,-0.86,453,-0.41,433,-0.45,413,-0.8,504,-0.42,471,-0.39,480,-2.37,524,-1.27,504,-1.11,494,"2019-20",1610612760,"OKC","1628390_2019-20","No Role Available"
1626196,"Josh Richardson",-0.17,304,-0.4,429,0.23,156,-0.7,483,-0.51,498,-0.18,358,-0.1,312,0.26,123,-0.36,440,0.41,148,0.09,216,0.32,147,0.01,281,-0.23,429,0.22,116,-0.7,411,-0.79,478,0.1,211,"2020-21",1610612742,"DAL","1626196_2020-21","Wing, Shooter"
1626154,"RJ Hunter",0.01,237,-0.11,340,0.12,178,0.06,201,0.1,183,-0.03,277,0.02,249,-0.02,283,0.03,234,0.14,214,0.15,203,0.01,273,-0.09,336,-0.14,390,0.05,211,0.01,254,0.08,225,-0.07,282,"2017-18",1610612745,"HOU","1626154_2017-18","No Role Available"
201586,"Serge Ibaka",0.13,172,0.03,236,0.1,189,0.2,158,0.08,197,0.12,167,0.26,151,0.79,22,-0.54,484,0.48,128,0.05,249,0.44,102,-0.64,493,-0.62,521,-0.02,300,0.16,198,-0.18,341,0.34,134,"2018-19",1610612761,"TOR","201586_2018-19","No Role Available"
1629731,"Dean Wade",-0.06,269,-0.07,314,0.01,248,-0.12,310,-0.06,304,-0.05,290,0.06,235,-0.05,294,0.11,189,-0.51,397,-0.31,402,-0.2,341,0.08,206,-0.05,320,0.13,155,-0.2,302,-0.21,332,0.02,246,"2019-20",1610612739,"CLE","1629731_2019-20","No Role Available"
1628380,"Zach Collins",0.75,94,0.42,103,0.34,145,0.46,94,-0.16,364,0.62,30,-0.61,466,-0.4,452,-0.2,374,0.95,67,0.36,119,0.59,86,-0.2,375,0.04,226,-0.25,426,0.76,108,-0.28,354,1.04,43,"2019-20",1610612757,"POR","1628380_2019-20","No Role Available"
1628391,"D.J. Wilson",-0.9,453,0.01,262,-0.91,487,0.08,207,0.11,189,-0.03,266,-0.45,430,0.09,192,-0.55,477,-0.42,374,-0.1,323,-0.32,380,-1.14,526,-0.53,494,-0.61,518,-0.99,452,-0.18,324,-0.82,464,"2019-20",1610612749,"MIL","1628391_2019-20","No Role Available"
1629023,"P.J. Washington",-0.32,354,0.19,171,-0.51,431,0.26,162,0.07,214,0.19,157,0.28,156,0.4,87,-0.13,334,-1.25,499,-0.52,464,-0.73,480,0.54,53,0.25,96,0.29,92,0.86,109,0.53,106,0.33,165,"2020-21",1610612766,"CHA","1629023_2020-21","Big, Shooter"
1628392,"Isaiah Hartenstein",-0.27,343,-0.32,397,0.04,235,0.49,84,0.13,179,0.37,89,-0.3,378,-0.18,363,-0.12,336,0.68,108,-0.05,294,0.73,62,-0.51,465,-0.09,342,-0.42,489,0.48,145,0.18,194,0.3,160,"2019-20",1610612745,"HOU","1628392_2019-20","No Role Available"
1628395,"Jordan Bell",0.29,162,0.01,266,0.29,157,0.35,119,0.05,226,0.3,108,0.32,129,0.09,196,0.23,129,0.85,78,0.19,172,0.66,71,-0.41,448,-0.1,352,-0.31,455,0.3,173,0.01,270,0.31,155,"2019-20",1610612750,"MIN","1628395_2019-20","No Role Available"
1626204,"Larry Nance Jr.",-0.25,329,1.13,17,-1.39,530,-0.08,294,0.19,130,-0.28,406,0.1,226,0.5,66,-0.41,458,0.19,194,-0.09,304,0.29,157,0.21,151,0.95,4,-0.74,530,-0.41,353,1.26,24,-1.67,525,"2020-21",1610612739,"CLE","1626204_2020-21","Big, Shooter"
1628396,"Tony Bradley",-0.72,423,-1.42,525,0.71,78,0.05,229,-0.05,296,0.1,187,-1.34,523,-0.69,508,-0.66,492,1.11,47,0.24,154,0.87,51,-0.62,486,-0.82,521,0.2,120,-0.5,371,-0.87,467,0.36,148,"2019-20",1610612762,"UTA","1628396_2019-20","No Role Available"
1629627,"Zion Williamson",2.54,5,0.39,113,2.14,3,0.36,134,-0.35,460,0.71,44,2.22,1,0.59,56,1.63,1,1.22,42,-0.13,326,1.35,20,0.11,200,0.23,106,-0.12,370,1.48,57,-0.2,347,1.68,30,"2020-21",1610612740,"NOP","1629627_2020-21","Big, Playmaker"
1629052,"Oshae Brissett",-0.2,313,-0.53,462,0.32,132,0.32,141,-0.11,354,0.43,88,0.72,54,0.21,139,0.51,61,-0.02,267,0.06,238,-0.07,288,0.12,194,-0.18,405,0.3,87,0.89,103,-0.24,358,1.13,52,"2020-21",1610612754,"IND","1629052_2020-21","No Role Available"
1626245,"Cristiano Felicio",0.43,138,0.3,136,0.13,199,0.02,240,0.08,206,-0.07,281,0.52,94,0.28,114,0.24,138,0.7,98,0.39,122,0.32,148,-0.03,299,0.11,184,-0.14,383,0.28,179,0.36,147,-0.07,262,"2020-21",1610612741,"CHI","1626245_2020-21","Big, Finisher"
1627761,"DeAndre Bembry",-0.04,227,-0.15,307,0.11,160,-0.26,329,-0.03,267,-0.23,357,-0.09,264,-0.18,330,0.09,195,0.21,177,0.3,117,-0.09,284,0.08,191,-0.06,273,0.14,146,-0.56,347,-0.2,297,-0.35,323,"2016-17",1610612737,"ATL","1627761_2016-17","No Role Available"
1628398,"Kyle Kuzma",1.2,52,0.65,65,0.54,101,0.35,122,0.18,156,0.16,158,0.47,89,0.23,133,0.24,125,-0.4,372,-0.16,346,-0.24,351,0.18,163,0.03,236,0.15,146,0.93,87,0.47,123,0.46,124,"2019-20",1610612747,"LAL","1628398_2019-20","No Role Available"
1628382,"Justin Jackson",-0.54,398,-0.92,492,0.38,134,-0.78,495,-0.88,521,0.1,185,-0.81,492,-0.1,325,-0.71,499,-0.47,388,-0.05,293,-0.42,407,0.2,156,-0.49,487,0.69,12,-0.68,412,-1.42,514,0.74,83,"2019-20",1610612742,"DAL","1628382_2019-20","No Role Available"
1628384,"OG Anunoby",0.8,89,0.62,72,0.18,179,0.3,131,0.06,221,0.24,126,0.6,65,0.74,31,-0.14,346,-0.19,310,0.45,96,-0.64,449,0.75,27,0.63,21,0.11,169,1.35,55,0.87,54,0.48,121,"2019-20",1610612761,"TOR","1628384_2019-20","No Role Available"
1626246,"Boban Marjanovic",0.54,118,0.41,109,0.13,194,-0.18,340,0.2,126,-0.38,446,0.89,35,0.71,37,0.18,167,1.69,15,1.02,21,0.66,68,0.07,229,-0.12,365,0.19,128,0.19,204,0.57,98,-0.38,381,"2020-21",1610612742,"DAL","1626246_2020-21","Big, Playmaker"
1627732,"Ben Simmons",1.32,44,1.06,23,0.26,148,0.87,39,0.28,104,0.6,57,1.21,17,0.01,245,1.2,6,0.21,190,0.7,62,-0.49,426,0.71,23,0.82,6,-0.11,367,2.15,20,1.56,12,0.59,116,"2020-21",1610612755,"PHI","1627732_2020-21","Wing, Playmaker"
1626167,"Myles Turner",0.31,143,1.69,4,-1.38,521,0.34,107,0.57,28,-0.23,404,0.45,102,0.71,27,-0.25,391,-1.47,501,-0.23,378,-1.24,516,0.09,208,0.3,91,-0.21,411,0.36,159,1.33,15,-0.97,493,"2018-19",1610612754,"IND","1626167_2018-19","No Role Available"
1626170,"Jerian Grant",-1.01,479,0.28,128,-1.29,517,-0.85,499,-0.23,412,-0.62,504,-0.67,469,-0.24,404,-0.43,459,0.09,221,0.13,208,-0.04,286,0.25,125,0.29,94,-0.04,309,-1.29,481,-0.21,351,-1.08,502,"2018-19",1610612753,"ORL","1626170_2018-19","No Role Available"
1627737,"Marquese Chriss",-0.17,303,0.07,219,-0.23,351,-0.29,385,-0.05,314,-0.23,389,0.06,246,0.01,253,0.05,238,0.04,243,0.15,189,-0.12,313,-0.09,333,-0.06,319,-0.03,297,-0.44,360,-0.11,303,-0.33,360,"2020-21",1610612744,"GSW","1627737_2020-21","Big, Shooter"
1629717,"Armoni Brooks",-1.41,513,-0.84,506,-0.57,449,-0.51,444,-0.18,397,-0.33,430,-0.46,430,-0.08,307,-0.38,449,-0.54,415,-0.34,407,-0.21,344,0.08,221,0.01,268,0.08,193,-1.19,476,-0.47,429,-0.72,446,"2020-21",1610612745,"HOU","1629717_2020-21","No Role Available"
201961,"Wayne Ellington",0.14,204,0.05,238,0.1,222,0.11,193,0.28,116,-0.17,371,0.4,107,0.13,173,0.26,118,0.78,89,0.07,237,0.71,65,-0.16,356,-0.08,335,-0.08,328,0.23,182,0.43,135,-0.2,330,"2019-20",1610612752,"NYK","201961_2019-20","No Role Available"
1628386,"Jarrett Allen",0.85,81,0.01,261,0.84,54,0.4,103,0.22,137,0.18,153,0.01,265,0.32,94,-0.32,432,-0.19,311,-0.29,399,0.1,212,0.3,121,-0.14,379,0.44,49,0.52,137,0.23,186,0.3,161,"2019-20",1610612751,"BKN","1628386_2019-20","No Role Available"
1628402,"Frank Jackson",-0.63,409,-0.87,487,0.25,164,-0.06,283,-0.4,455,0.35,94,0.01,266,-0.67,507,0.67,35,-0.3,350,-0.26,385,-0.04,272,-0.21,376,-0.39,464,0.19,123,-0.52,377,-1.28,507,0.75,81,"2019-20",1610612740,"NOP","1628402_2019-20","No Role Available"
203954,"Joel Embiid",2.57,8,1.33,7,1.24,19,1.79,4,1.09,1,0.7,25,2.14,2,0.59,40,1.55,3,1.03,64,0.79,36,0.24,151,-0.64,494,-0.47,499,-0.17,399,2.83,8,1.23,19,1.6,19,"2018-19",1610612755,"PHI","203954_2018-19","No Role Available"
1627739,"Kris Dunn",-0.57,421,-0.36,412,-0.21,345,-0.19,346,-0.15,372,-0.04,262,-0.25,358,-0.25,394,0.01,268,0.09,222,0.08,226,0.02,246,-0.15,368,-0.11,354,-0.05,313,-0.51,371,-0.4,408,-0.11,280,"2020-21",1610612737,"ATL","1627739_2020-21","No Role Available"
1626171,"Bobby Portis",-0.19,322,-0.75,492,0.55,83,0.06,207,-0.43,466,0.5,46,-0.57,449,-0.67,498,0.1,183,-0.38,374,0.01,281,-0.39,409,-0.21,373,-0.07,310,-0.14,379,-0.28,330,-0.94,491,0.66,79,"2018-19",1610612741,"CHI","1626171_2018-19","No Role Available"
1627741,"Buddy Hield",0.56,112,-0.8,503,1.36,20,0.51,90,-0.38,468,0.89,22,-0.65,471,0.12,176,-0.78,517,0.02,250,-0.56,472,0.58,83,0.09,215,0.14,154,-0.05,320,0.45,154,-0.85,484,1.31,47,"2020-21",1610612758,"SAC","1627741_2020-21","Wing, Shooter"
1628403,"Caleb Swanigan",-0.69,418,-0.49,432,-0.2,340,0.27,141,-0.18,373,0.46,56,-0.23,350,-0.12,338,-0.11,329,-0.44,380,-0.55,458,0.11,211,-0.36,432,0.11,178,-0.47,503,-0.29,335,-0.47,411,0.18,186,"2019-20",1610612758,"SAC","1628403_2019-20","No Role Available"
1628404,"Josh Hart",-0.29,348,-0.24,379,-0.05,272,-0.09,296,-0.28,410,0.19,149,-0.07,287,-0.39,448,0.33,90,1.49,26,0.84,31,0.65,72,-0.34,429,-0.21,413,-0.13,363,-0.67,410,-0.71,452,0.04,243,"2019-20",1610612740,"NOP","1628404_2019-20","No Role Available"
1628405,"Johnathan Motley",0.05,232,-0.03,291,0.08,226,0.04,235,-0.06,299,0.1,192,-0.35,407,-0.32,418,-0.04,286,0.07,233,0.08,229,-0.02,258,0.16,177,0.05,221,0.11,171,0.07,227,-0.12,312,0.19,185,"2019-20",1610612746,"LAC","1628405_2019-20","No Role Available"
1630167,"Obi Toppin",-0.27,337,-0.22,363,-0.05,271,-0.19,344,0.01,276,-0.18,354,-0.47,434,-0.36,441,-0.11,328,-0.78,458,-0.49,455,-0.29,377,0.4,84,-0.17,399,0.58,23,-0.17,300,-0.4,410,0.23,175,"2020-21",1610612752,"NYK","1630167_2020-21","Big, Shooter"
1629022,"Lonnie Walker IV",-0.17,306,-0.23,375,0.06,230,0.18,164,0.17,158,0.01,246,0.06,236,0.17,158,-0.11,331,-1.18,484,-0.47,446,-0.72,464,0.37,103,-0.12,367,0.5,34,0.15,199,-0.06,290,0.21,178,"2019-20",1610612759,"SAS","1629022_2019-20","No Role Available"
202324,"Derrick Favors",1.29,48,0.63,71,0.66,85,0.68,56,0.22,139,0.46,55,0.68,55,0.86,17,-0.18,368,2.16,12,0.5,83,1.66,9,-0.33,420,-0.13,370,-0.2,402,1.67,34,0.72,73,0.95,48,"2019-20",1610612740,"NOP","202324_2019-20","No Role Available"
200757,"Thabo Sefolosha",0.62,111,-0.21,365,0.83,56,-0.09,295,0.04,229,-0.13,349,-0.33,392,-0.45,462,0.12,184,-0.29,343,-0.04,292,-0.24,352,0.5,65,0.16,152,0.33,74,0.11,215,-0.05,287,0.15,196,"2019-20",1610612745,"HOU","200757_2019-20","No Role Available"
1627747,"Caris LeVert",0.3,157,-0.42,419,0.72,75,0.47,90,-0.14,351,0.62,32,0.59,67,-0.03,274,0.62,47,1.12,46,0.21,163,0.91,47,-0.71,494,-0.49,488,-0.21,407,0.47,147,-0.51,416,0.98,45,"2019-20",1610612751,"BKN","1627747_2019-20","No Role Available"
202694,"Marcus Morris Sr.",1.59,28,0.68,61,0.91,47,0.27,142,-0.06,300,0.33,98,0.24,154,-0.08,320,0.32,100,0.71,104,0.33,130,0.38,119,0.42,89,-0.2,409,0.63,17,1.45,43,-0.06,291,1.5,22,"2019-20",1610612752,"NYK","202694_2019-20","No Role Available"
1627742,"Brandon Ingram",0.44,134,-0.43,439,0.87,52,0.54,80,-0.05,306,0.58,59,0.2,177,-0.17,350,0.37,92,-0.52,411,-0.08,300,-0.44,417,0.02,260,-0.41,491,0.43,49,0.42,163,-0.68,461,1.09,54,"2020-21",1610612740,"NOP","1627742_2020-21","Ball Handler, Secondary Playmaker"
1629026,"Kenrich Williams",-0.11,280,0.19,169,-0.3,378,0.5,91,-0.06,317,0.56,67,-0.29,373,-0.27,406,-0.02,281,0.91,72,-0.29,387,1.2,25,0.09,216,0.63,17,-0.54,508,0.17,210,0.03,245,0.14,197,"2020-21",1610612760,"OKC","1629026_2020-21","Wing, Shooter"
1628407,"Dwayne Bacon",-1,466,-0.34,401,-0.66,441,-0.96,507,-0.15,355,-0.82,517,0.64,57,0.01,242,0.63,44,-0.37,363,-0.25,381,-0.12,312,0.57,57,0.41,48,0.15,141,-0.89,439,0.06,237,-0.94,481,"2019-20",1610612766,"CHA","1628407_2019-20","No Role Available"
1628410,"Edmond Sumner",-0.91,454,-0.16,350,-0.75,463,-0.15,321,-0.02,281,-0.13,350,-0.36,409,0.15,169,-0.5,470,-1.32,494,-0.88,498,-0.44,411,0.18,162,0.21,119,-0.02,279,-0.6,395,-0.1,303,-0.49,401,"2019-20",1610612754,"IND","1628410_2019-20","No Role Available"
202695,"Kawhi Leonard",3.73,2,0.98,29,2.74,1,1.29,9,0.74,18,0.55,43,0.88,37,0.27,120,0.62,48,2.56,4,1.59,3,0.97,41,1.02,9,0.08,195,0.94,1,4.32,2,1.83,6,2.49,4,"2019-20",1610612746,"LAC","202695_2019-20","No Role Available"
1628411,"Wes Iwundu",-0.3,349,0.11,202,-0.41,402,0.03,245,0.46,60,-0.43,466,0.59,69,0.45,62,0.14,165,0.56,126,0.78,39,-0.23,347,0.48,72,0.03,239,0.45,45,0.63,125,0.97,48,-0.34,370,"2019-20",1610612753,"ORL","1628411_2019-20","No Role Available"
1630182,"Josh Green",0.63,106,0.15,182,0.48,108,0.05,228,0.26,108,-0.2,368,0.61,75,0.51,65,0.1,208,-0.14,305,-0.52,462,0.38,132,0.45,76,0.37,65,0.07,202,0.05,234,0.59,94,-0.54,413,"2020-21",1610612742,"DAL","1630182_2020-21","Wing, Shooter"
1626205,"Vincent Hunter",0.14,188,0.08,226,0.05,208,-0.02,261,0.01,276,0.01,258,0.03,242,0.03,242,0.01,254,0.05,256,-0.02,304,0.06,230,0.04,244,0.03,229,0.01,271,0.04,238,0.02,252,0.02,232,"2017-18",1610612763,"MEM","1626205_2017-18","No Role Available"
1626172,"Kevon Looney",1.07,55,-0.27,384,1.34,17,0.7,52,0.54,33,0.16,142,-1.28,526,-1.49,529,0.21,133,3.08,1,0.67,49,2.41,2,-0.23,382,-0.59,517,0.36,50,1.56,46,0.1,196,1.46,23,"2018-19",1610612744,"GSW","1626172_2018-19","No Role Available"
202697,"Iman Shumpert",-0.83,440,0.11,204,-0.95,491,-0.22,357,0.12,182,-0.34,444,-0.46,435,-0.27,398,-0.19,372,-0.28,338,-0.46,444,0.19,179,-0.09,323,0.14,164,-0.23,418,-0.87,438,-0.19,327,-0.68,437,"2019-20",1610612751,"BKN","202697_2019-20","No Role Available"
1627747,"Caris LeVert",-1.17,496,-0.8,502,-0.37,393,0.46,101,0.32,95,0.14,177,0.58,78,0.06,211,0.52,57,-2.03,534,-1.4,533,-0.63,463,-0.36,445,-0.22,422,-0.15,390,0.14,217,-0.13,323,0.27,172,"2020-21",1610612751,"BKN","1627747_2020-21","Ball Handler, Primary Playmaker"
1628394,"Anzejs Pasecniks",0.09,216,-0.07,311,0.16,187,-0.38,416,-0.25,397,-0.13,357,0.44,97,-0.18,367,0.62,45,0.53,136,0.2,169,0.33,140,0.75,26,0.37,62,0.38,62,0.13,203,-0.12,311,0.25,166,"2019-20",1610612764,"WAS","1628394_2019-20","No Role Available"
1627749,"Dejounte Murray",1.61,27,1.06,22,0.55,97,0.48,100,0.16,156,0.33,111,0.8,42,1.14,6,-0.34,427,0.01,255,0.51,95,-0.5,429,0.91,16,0.26,95,0.65,15,1.94,30,1.09,32,0.85,80,"2020-21",1610612759,"SAS","1627749_2020-21","Ball Handler, Secondary Playmaker"
1628413,"Jonah Bolden",-0.18,309,0.12,197,-0.29,368,-0.05,277,-0.07,311,0.02,241,-0.08,299,-0.09,322,0.01,249,-0.35,360,-0.21,366,-0.14,319,0.06,215,0.19,132,-0.13,359,-0.12,278,-0.05,288,-0.06,274,"2019-20",1610612755,"PHI","1628413_2019-20","No Role Available"
1626174,"Christian Wood",-0.62,427,-0.05,293,-0.57,449,-0.25,384,-0.14,372,-0.11,337,0.02,237,0.08,200,-0.06,298,-0.1,292,-0.02,295,-0.07,304,-0.31,408,-0.03,279,-0.28,455,-0.59,396,-0.14,319,-0.45,404,"2018-19",1610612749,"MIL","1626174_2018-19","No Role Available"
1626178,"Rondae Hollis-Jefferson",0.4,131,0.55,79,-0.16,340,0.02,237,0.32,93,-0.29,431,0.97,28,0.21,145,0.76,29,0.8,85,0.66,51,0.15,179,0.44,69,0.28,96,0.16,135,0.67,113,0.91,50,-0.24,341,"2018-19",1610612751,"BKN","1626178_2018-19","No Role Available"
1628414,"Sindarius Thornwell",0.19,192,-0.06,305,0.25,163,-0.08,290,-0.2,382,0.12,173,0.16,184,-0.02,264,0.18,149,-0.03,267,-0.13,337,0.1,216,-0.03,294,0.04,232,-0.07,318,-0.09,269,-0.29,357,0.2,181,"2019-20",1610612740,"NOP","1628414_2019-20","No Role Available"
1630223,"Jalen Harris",0.31,168,0.27,145,0.04,227,0.11,199,0.05,228,0.06,206,-0.16,327,-0.23,387,0.07,231,0.17,200,0.28,156,-0.11,308,0.36,95,0.31,76,0.05,230,0.46,153,0.29,164,0.18,188,"2020-21",1610612761,"TOR","1630223_2020-21","Big, Finisher"
202684,"Tristan Thompson",0.37,126,0.39,108,-0.02,215,-0.41,384,-0.41,430,0.01,203,1.88,2,1.91,1,-0.02,251,1.61,17,0.4,91,1.21,21,-0.36,401,-0.3,415,-0.06,292,0.14,185,-0.04,250,0.18,154,"2016-17",1610612739,"CLE","202684_2016-17","No Role Available"
1626210,"Alan Williams",0.13,196,0.31,123,-0.18,354,0.08,195,0.17,153,-0.08,332,-0.04,281,0.01,248,-0.05,297,-0.4,392,-0.13,358,-0.27,386,0.21,147,0.26,95,-0.04,321,0.09,226,0.39,130,-0.3,375,"2017-18",1610612756,"PHX","1626210_2017-18","No Role Available"
1629639,"Tyler Herro",-0.61,427,-0.49,456,-0.12,315,-0.23,361,-0.05,310,-0.18,356,0.15,202,0.01,261,0.16,175,-1.7,527,-1.24,528,-0.46,419,-0.08,324,-0.14,382,0.06,219,-1.02,455,-0.56,447,-0.45,391,"2020-21",1610612748,"MIA","1629639_2020-21","Ball Handler, Secondary Playmaker"
1627750,"Jamal Murray",0.75,93,-0.17,346,0.93,47,0.87,40,-0.1,349,0.97,15,0.37,128,0.27,117,0.09,214,0.4,149,-0.69,487,1.09,31,0.44,77,0.42,52,0.02,248,1.98,27,0.27,167,1.71,28,"2020-21",1610612743,"DEN","1627750_2020-21","Ball Handler, Secondary Playmaker"
101114,"Deron Williams",1,62,0.77,44,0.23,136,0.14,169,-0.25,372,0.39,72,-1.54,481,-0.65,452,-0.88,469,0.49,116,1.15,6,-0.66,419,0.09,184,-0.09,293,0.17,127,-0.41,319,-0.22,300,-0.2,285,"2016-17",0,"League","101114_2016-17","No Role Available"
1628415,"Dillon Brooks",-0.18,313,-0.36,404,0.18,176,0.1,199,0.48,57,-0.38,457,-0.88,499,-0.47,466,-0.4,451,0.8,86,0.06,242,0.74,60,0.16,176,-0.09,343,0.25,98,0.07,225,0.43,139,-0.36,375,"2019-20",1610612763,"MEM","1628415_2019-20","No Role Available"
1627751,"Jakob Poeltl",2.03,16,1.48,6,0.55,96,0.5,92,0.33,93,0.17,167,-0.05,287,0.42,85,-0.47,474,1.13,50,-0.1,313,1.23,24,0.35,98,0.28,86,0.07,206,1.27,71,0.9,54,0.36,160,"2020-21",1610612759,"SAS","1627751_2020-21","Big, Finisher"
1627752,"Taurean Prince",0.05,225,-0.36,413,0.41,119,-0.32,392,-0.26,431,-0.06,277,0.26,159,0.01,259,0.27,127,-0.18,326,-0.11,316,-0.08,291,-0.03,296,-0.33,469,0.3,88,-0.52,374,-0.94,497,0.42,148,"2020-21",0,"League","1627752_2020-21","Wing, Shooter"
101133,"Ian Mahinmi",-0.35,366,-0.2,362,-0.15,312,-0.64,477,-0.29,413,-0.36,451,-0.02,269,-0.32,417,0.3,106,1.44,30,0.27,145,1.16,24,0.07,213,0.03,247,0.04,220,-0.52,376,-0.57,427,0.05,238,"2019-20",1610612764,"WAS","101133_2019-20","No Role Available"
1626158,"Richaun Holmes",1.56,30,0.55,85,1.02,35,0.12,189,-0.08,317,0.2,145,1.05,25,0.89,13,0.15,159,0.66,113,-0.21,370,0.88,49,0.53,60,0.23,106,0.3,84,1.1,73,0.29,176,0.8,71,"2019-20",1610612758,"SAC","1626158_2019-20","No Role Available"
203926,"Doug McDermott",0.1,182,0.01,258,0.1,187,0.28,128,0.09,196,0.19,129,-0.63,459,-0.21,389,-0.41,453,1.26,41,0.14,201,1.12,25,-0.74,507,-0.25,429,-0.49,506,0.47,137,0.22,163,0.25,155,"2018-19",1610612754,"IND","203926_2018-19","No Role Available"
203994,"Jusuf Nurkic",0.7,98,1.09,20,-0.38,401,0.73,57,0.53,36,0.2,150,-0.07,294,0.31,107,-0.38,445,-0.66,440,0.47,100,-1.13,517,0.61,37,0.54,32,0.08,200,1.18,75,1.3,21,-0.12,286,"2020-21",1610612757,"POR","203994_2020-21","Big, Finisher"
1628378,"Donovan Mitchell",0.36,158,-0.33,397,0.68,74,0.09,209,0.06,224,0.03,220,0.4,120,-0.18,360,0.58,45,0.31,164,-0.63,482,0.94,42,-0.24,410,-0.65,521,0.41,58,0.56,143,-0.34,394,0.9,73,"2020-21",1610612762,"UTA","1628378_2020-21","Ball Handler, Primary Playmaker"
1628386,"Jarrett Allen",-0.49,401,-0.49,457,0.01,242,0.23,167,0.02,249,0.21,143,1.84,4,0.69,43,1.16,7,1.12,52,-0.41,427,1.53,9,-1.08,528,-0.35,474,-0.73,529,0.2,200,-0.02,271,0.23,177,"2020-21",0,"League","1628386_2020-21","Big, Finisher"
1626178,"Rondae Hollis-Jefferson",0.31,170,-0.21,356,0.51,103,-0.34,404,-0.07,328,-0.27,404,0.14,204,-0.35,434,0.49,63,0.46,138,0.17,184,0.29,156,0.21,152,-0.06,315,0.27,96,-0.26,325,-0.22,352,-0.04,248,"2020-21",1610612757,"POR","1626178_2020-21","No Role Available"
1628422,"Damyean Dotson",-0.88,450,-0.22,372,-0.66,442,-0.28,386,0.06,219,-0.34,446,-0.6,464,-0.71,510,0.11,186,0.1,224,0.2,168,-0.1,297,-0.4,446,-0.37,458,-0.04,293,-0.62,402,-0.02,276,-0.6,420,"2019-20",1610612752,"NYK","1628422_2019-20","No Role Available"
1628425,"Sterling Brown",-0.72,424,0.47,96,-1.18,507,0.35,120,0.46,59,-0.12,342,0.21,163,0.07,203,0.14,170,0.68,112,0.11,215,0.57,90,-0.77,500,-0.09,350,-0.67,520,-0.11,276,0.67,84,-0.77,456,"2019-20",1610612749,"MIL","1628425_2019-20","No Role Available"
1629027,"Trae Young",0.65,103,-1.21,531,1.86,5,0.83,44,0.12,180,0.71,41,0.44,108,-0.53,488,0.97,15,0.11,218,-0.9,515,1.01,35,-0.23,400,-0.57,517,0.34,72,1.55,52,-0.86,488,2.41,8,"2020-21",1610612737,"ATL","1629027_2020-21","Ball Handler, Primary Playmaker"
1626168,"Trey Lyles",0.88,79,0.31,132,0.58,97,0.25,147,-0.18,372,0.44,65,0.72,50,0.71,34,0.01,251,1.39,33,1.13,12,0.26,158,0.23,142,-0.08,334,0.31,82,0.93,89,0.03,248,0.89,56,"2019-20",1610612759,"SAS","1626168_2019-20","No Role Available"
1628411,"Wes Iwundu",-0.43,386,0.1,209,-0.52,451,-0.73,499,0.02,238,-0.76,530,0.58,60,0.35,90,0.23,132,0.1,233,0.19,180,-0.09,317,0.62,40,0.3,73,0.32,68,-0.65,411,0.43,122,-1.08,505,"2017-18",1610612753,"ORL","1628411_2017-18","No Role Available"
1626242,"Luis Montero",-0.02,249,0.06,237,-0.08,302,0.01,244,0.02,234,-0.03,274,0.03,246,0.06,219,-0.03,279,0.11,230,0.14,206,-0.03,290,-0.09,340,-0.07,339,-0.02,307,-0.06,284,0.03,249,-0.09,294,"2017-18",1610612765,"DET","1626242_2017-18","No Role Available"
1626181,"Norman Powell",-0.04,258,0.12,185,-0.17,343,-0.3,400,-0.12,358,-0.17,380,-0.72,478,-0.52,476,-0.21,369,-0.85,452,0.03,258,-0.88,488,0.42,74,0.23,115,0.19,117,-0.61,401,-0.1,295,-0.51,416,"2018-19",1610612761,"TOR","1626181_2018-19","No Role Available"
203897,"Zach LaVine",-0.22,326,-0.36,417,0.14,171,-0.1,320,-0.26,426,0.16,144,0.52,86,0.14,172,0.38,80,-0.34,367,0.22,165,-0.56,441,-0.64,495,-0.38,471,-0.26,448,-0.47,366,-0.54,438,0.07,219,"2018-19",1610612741,"CHI","203897_2018-19","No Role Available"
1627756,"Denzel Valentine",0.18,203,0.51,96,-0.33,387,0.01,246,0.21,122,-0.22,378,-0.81,496,0.18,157,-0.98,532,1,65,1.31,6,-0.31,381,0.49,68,0.01,262,0.48,40,0.7,127,0.9,55,-0.2,316,"2020-21",1610612741,"CHI","1627756_2020-21","Wing, Shooter"
1629658,"Jaylen Hoard",-0.4,376,-0.32,396,-0.08,287,0.05,227,0.16,148,-0.11,318,0.27,158,0.08,199,0.18,164,-0.2,331,-0.47,446,0.27,165,-0.32,433,-0.11,352,-0.21,425,-0.31,343,0.01,257,-0.31,354,"2020-21",1610612760,"OKC","1629658_2020-21","No Role Available"
101123,"Gerald Green",-0.14,262,-0.56,413,0.42,95,-0.11,264,0.05,203,-0.16,322,-0.48,400,-0.36,394,-0.13,305,-0.64,387,0.08,201,-0.72,432,0.3,110,-0.14,326,0.44,38,-0.24,285,-0.15,279,-0.09,238,"2016-17",1610612738,"BOS","101123_2016-17","No Role Available"
1628427,"Vlatko Cancar",0.31,155,-0.02,286,0.33,148,-0.13,311,-0.09,318,-0.04,280,-0.26,363,-0.24,390,-0.02,276,0.53,133,0.22,159,0.32,144,0.02,258,0.01,267,0.01,256,-0.08,265,-0.14,315,0.06,234,"2019-20",1610612743,"DEN","1628427_2019-20","No Role Available"
1628430,"Nigel Williams-Goss",0.02,238,0.09,219,-0.07,278,0.09,205,0.13,177,-0.04,278,-0.42,422,-0.35,429,-0.07,303,0.1,222,0.03,255,0.07,229,-0.03,291,-0.04,313,0.01,254,0.06,232,0.15,205,-0.09,291,"2019-20",1610612762,"UTA","1628430_2019-20","No Role Available"
1629639,"Tyler Herro",-1.29,494,-1.39,523,0.1,218,-0.39,420,0.01,257,-0.41,461,0.18,176,-0.35,432,0.53,58,-1.08,475,-0.74,483,-0.34,388,-0.68,490,-0.32,451,-0.36,468,-1.45,493,-0.63,442,-0.82,465,"2019-20",1610612748,"MIA","1629639_2019-20","No Role Available"
1629033,"Theo Pinson",-0.08,265,0.01,261,-0.08,285,-0.23,362,-0.07,329,-0.16,344,0.28,155,-0.1,322,0.38,91,-0.34,365,-0.15,335,-0.19,337,0.13,188,0.11,182,0.02,252,-0.26,326,-0.07,292,-0.19,311,"2020-21",1610612752,"NYK","1629033_2020-21","Wing, Shooter"
101127,"Jarrett Jack",-0.05,229,0.01,246,-0.04,220,-0.12,267,-0.02,261,-0.1,274,0.2,153,0.06,207,0.14,164,-0.08,270,-0.15,318,0.08,210,-0.09,289,0.06,178,-0.15,344,-0.23,283,-0.03,242,-0.2,286,"2016-17",1610612740,"NOP","101127_2016-17","No Role Available"
1627761,"DeAndre Bembry",1,69,0.38,117,0.61,82,0.27,157,0.35,87,-0.08,293,0.44,110,-0.23,384,0.67,34,0.36,154,-0.42,430,0.79,54,0.23,147,0.38,63,-0.15,395,0.9,99,0.79,66,0.11,206,"2020-21",1610612761,"TOR","1627761_2020-21","Wing, Shooter"
1628436,"Luke Kornet",0.16,200,-0.06,304,0.22,170,-0.28,382,-0.21,389,-0.07,300,-0.62,469,0.06,211,-0.68,495,-1.8,513,-0.4,424,-1.4,522,0.53,61,0.01,271,0.52,29,-0.47,364,-0.12,310,-0.35,374,"2019-20",1610612741,"CHI","1628436_2019-20","No Role Available"
1626184,"Chasson Randle",-0.45,389,-0.15,347,-0.3,380,-0.79,490,-0.49,482,-0.3,434,-0.22,356,-0.07,312,-0.15,341,-0.38,378,0.17,188,-0.55,440,0.21,145,0.06,192,0.14,143,-1.3,483,-0.77,473,-0.53,421,"2018-19",1610612764,"WAS","1626184_2018-19","No Role Available"
1628443,"Kadeem Allen",0.29,165,0.04,246,0.24,165,-0.23,365,-0.32,425,0.09,199,0.13,193,-0.02,262,0.15,164,-0.33,355,-0.06,303,-0.27,361,0.2,157,0.03,246,0.17,129,-0.18,295,-0.41,395,0.23,172,"2019-20",1610612752,"NYK","1628443_2019-20","No Role Available"
1628425,"Sterling Brown",-0.82,461,0.01,264,-0.81,494,-0.12,317,0.24,114,-0.36,439,-0.44,418,-0.42,457,-0.02,279,-1.02,483,-0.25,377,-0.77,489,0.18,164,0.18,130,0.01,274,-0.59,392,0.37,140,-0.96,474,"2020-21",1610612745,"HOU","1628425_2020-21","Wing, Shooter"
1628427,"Vlatko Cancar",-1.08,487,-0.71,489,-0.37,396,-0.62,470,-0.14,364,-0.48,471,-0.91,507,-0.62,505,-0.29,410,0.46,139,0.93,30,-0.47,420,-0.81,517,-0.61,520,-0.2,414,-1.48,497,-0.47,430,-1,479,"2020-21",1610612743,"DEN","1628427_2020-21","Wing, Shooter"
1629677,"Luka Samanic",0.09,220,0.11,200,-0.03,260,0.06,225,0.09,195,-0.03,274,0.28,140,0.21,144,0.07,212,0.12,219,0.27,146,-0.15,324,-0.07,313,-0.09,349,0.02,243,0.06,233,0.15,203,-0.09,294,"2019-20",1610612759,"SAS","1629677_2019-20","No Role Available"
1630174,"Aaron Nesmith",-0.04,252,0.07,217,-0.11,304,0.45,103,0.11,188,0.34,106,-1.07,523,-0.66,512,-0.42,463,0.86,76,0.87,34,-0.02,269,-0.33,436,-0.12,364,-0.21,423,-0.19,306,-0.08,293,-0.12,283,"2020-21",1610612738,"BOS","1630174_2020-21","Wing, Shooter"
1627763,"Malcolm Brogdon",0.94,77,0.39,115,0.55,98,0.16,183,0.51,40,-0.34,434,0.03,259,-0.26,396,0.29,120,1.23,41,0.64,70,0.59,79,0.27,125,-0.49,505,0.75,8,0.95,94,0.52,111,0.44,141,"2020-21",1610612754,"IND","1627763_2020-21","Ball Handler, Primary Playmaker"
1628449,"Chris Boucher",0.5,122,-0.39,406,0.89,49,0.34,123,0.22,143,0.13,172,-0.18,337,-0.92,526,0.74,26,0.68,111,-0.79,489,1.47,16,0.03,239,0.22,114,-0.19,397,0.74,113,0.09,230,0.65,95,"2019-20",1610612761,"TOR","1628449_2019-20","No Role Available"
1628450,"Eric Mika",0.2,189,0.04,250,0.15,191,0.07,215,0.01,262,0.07,208,0.02,255,-0.03,285,0.05,222,0.08,231,0.01,275,0.09,222,0.09,200,0.07,206,0.03,239,0.23,184,0.02,254,0.2,180,"2019-20",1610612758,"SAC","1628450_2019-20","No Role Available"
1628464,"Daniel Theis",0.99,67,0.85,39,0.14,200,0.3,130,0.39,77,-0.09,322,0.63,61,0.83,20,-0.2,373,0.04,243,0.53,78,-0.49,419,0.02,256,-0.12,363,0.14,152,0.92,91,0.92,50,0.01,255,"2019-20",1610612738,"BOS","1628464_2019-20","No Role Available"
1626185,"Jarell Martin",0.16,164,0.29,125,-0.13,330,0.12,187,0.14,163,-0.02,265,-0.16,336,-0.24,408,0.08,201,0.01,253,0.3,134,-0.31,385,0.42,77,0.21,124,0.21,111,0.54,130,0.4,131,0.14,183,"2018-19",1610612753,"ORL","1626185_2018-19","No Role Available"
1628467,"Maxi Kleber",0.12,210,-0.65,458,0.78,63,0.1,200,0.31,104,-0.21,392,-0.41,419,-0.37,439,-0.04,288,0.38,158,-0.27,386,0.65,74,0.03,245,-0.39,463,0.41,54,0.64,124,0.16,202,0.49,119,"2019-20",1610612742,"DAL","1628467_2019-20","No Role Available"
101133,"Ian Mahinmi",0.87,71,0.7,49,0.17,146,0.49,84,0.22,118,0.27,106,0.83,40,0.4,86,0.43,80,0.27,163,0.18,164,0.09,204,-0.05,269,0.28,96,-0.32,420,0.88,84,0.76,66,0.13,169,"2016-17",1610612764,"WAS","101133_2016-17","No Role Available"
1628499,"Antonius Cleveland",-0.3,352,-0.1,330,-0.2,342,-0.22,361,-0.12,333,-0.1,331,0.11,201,-0.16,351,0.27,115,0.46,149,0.25,150,0.21,175,-0.14,347,-0.11,359,-0.03,288,-0.29,334,-0.26,350,-0.03,266,"2019-20",1610612742,"DAL","1628499_2019-20","No Role Available"
1628539,"Mychal Mulder",0.01,237,-0.14,329,0.15,188,0.24,166,-0.22,413,0.46,82,0.2,179,0.46,75,-0.26,400,-2.4,539,-0.51,460,-1.89,538,0.36,94,0.02,247,0.34,76,0.21,196,-0.29,373,0.5,128,"2020-21",1610612744,"GSW","1628539_2020-21","Wing, Shooter"
203109,"Jae Crowder",0.88,81,1.36,10,-0.48,424,0.82,46,0.84,10,-0.02,246,-0.39,405,-0.23,386,-0.16,350,-1.52,518,0.37,127,-1.89,537,0.44,79,0.14,157,0.3,89,1.41,60,1.31,20,0.1,213,"2020-21",1610612756,"PHX","203109_2020-21","Wing, Shooter"
1627774,"Jake Layman",0.03,230,0.55,83,-0.53,436,-0.55,452,0.08,211,-0.62,502,-0.55,446,-0.28,410,-0.26,403,-0.49,401,0.1,209,-0.59,455,-0.05,306,0.29,83,-0.33,471,-1.16,475,0.49,114,-1.65,523,"2020-21",1610612750,"MIN","1627774_2020-21","Wing, Shooter"
1626188,"Quinn Cook",-1.58,517,-0.78,498,-0.8,486,-1.03,514,-0.62,508,-0.42,472,-1.04,515,-0.52,475,-0.52,479,-1.64,511,-0.52,448,-1.12,509,-0.04,287,-0.33,456,0.29,73,-2.49,523,-1.54,521,-0.96,492,"2018-19",1610612744,"GSW","1626188_2018-19","No Role Available"
1628378,"Donovan Mitchell",-0.86,446,-1.01,503,0.15,193,0.31,128,-0.13,343,0.44,64,-0.91,504,-0.58,488,-0.33,434,-0.89,456,-0.13,338,-0.76,471,-0.34,426,-0.64,507,0.31,81,-0.03,255,-0.62,437,0.58,104,"2019-20",1610612762,"UTA","1628378_2019-20","No Role Available"
1628518,"Amile Jefferson",0.06,229,0.28,140,-0.22,347,0.05,232,0.14,172,-0.1,327,0.36,118,0.19,150,0.17,153,0.19,202,-0.05,295,0.24,167,0.2,153,0.09,190,0.11,173,0.31,169,0.42,142,-0.11,301,"2019-20",1610612753,"ORL","1628518_2019-20","No Role Available"
1626245,"Cristiano Felicio",-2.09,539,-0.48,452,-1.6,540,-1.82,541,-0.65,519,-1.17,541,0.12,204,0.38,86,-0.25,397,-0.25,358,-0.09,340,-0.17,349,-0.37,446,0.03,234,-0.4,496,-3.41,540,-0.95,495,-2.46,540,"2017-18",1610612741,"CHI","1626245_2017-18","No Role Available"
1628778,"Paul Watson",-0.75,452,-0.53,464,-0.22,349,0.04,233,0.13,177,-0.09,298,-1.19,525,-0.95,532,-0.24,392,-0.7,447,-0.81,505,0.11,212,0.01,284,-0.09,334,0.08,198,-0.31,342,-0.28,368,-0.02,244,"2020-21",1610612761,"TOR","1628778_2020-21","Wing, Shooter"
1628539,"Mychal Mulder",0.76,93,0.03,253,0.73,73,0.72,50,0.4,76,0.32,100,-0.4,416,-0.53,478,0.13,175,-0.58,406,-0.42,437,-0.16,328,0.24,134,0.03,244,0.22,109,0.74,110,0.31,167,0.43,133,"2019-20",1610612744,"GSW","1628539_2019-20","No Role Available"
1628778,"Paul Watson",0.31,156,0.18,178,0.13,205,0.29,134,0.07,207,0.22,137,-0.54,451,-0.44,461,-0.09,322,0.44,151,0.08,231,0.36,127,0.1,199,0.2,130,-0.09,337,0.44,150,0.16,201,0.28,162,"2019-20",1610612737,"ATL","1628778_2019-20","No Role Available"
1626192,"Pat Connaughton",0.5,114,-0.13,340,0.63,71,0.37,100,0.21,130,0.16,146,-0.55,446,-0.63,491,0.07,206,0.34,159,-0.13,352,0.48,96,-0.32,409,-0.48,501,0.17,125,0.29,169,-0.14,320,0.43,119,"2018-19",1610612749,"MIL","1626192_2018-19","No Role Available"
1628960,"Grayson Allen",-0.16,303,-0.25,382,0.09,225,-0.43,433,-0.26,406,-0.17,372,-0.41,418,-0.63,495,0.22,134,-1.45,503,-0.53,455,-0.92,492,0.45,80,0.19,134,0.26,97,-0.73,420,-0.44,402,-0.3,354,"2019-20",1610612763,"MEM","1628960_2019-20","No Role Available"
1628961,"Kostas Antetokounmpo",0.06,227,-0.05,298,0.11,216,0.05,233,0.01,273,0.06,209,-0.1,304,0.03,228,-0.13,341,-0.21,316,-0.09,320,-0.12,303,0.13,189,0.02,251,0.11,174,0.11,210,0.01,268,0.13,207,"2019-20",1610612747,"LAL","1628961_2019-20","No Role Available"
1628963,"Marvin Bagley III",-0.91,456,-0.59,448,-0.33,377,-0.46,435,-0.11,331,-0.35,449,-0.31,383,0.24,127,-0.55,478,0.54,131,0.06,240,0.47,104,-0.83,510,-0.53,495,-0.3,449,-1.33,481,-0.57,429,-0.76,451,"2019-20",1610612758,"SAC","1628963_2019-20","No Role Available"
1628964,"Mo Bamba",0.05,233,0.23,161,-0.18,331,-0.13,314,0.28,117,-0.41,462,-0.43,424,0.11,183,-0.54,476,1,63,-0.61,467,1.61,11,0.36,106,0.31,75,0.05,218,0.66,122,0.69,76,-0.03,267,"2019-20",1610612753,"ORL","1628964_2019-20","No Role Available"
1628966,"Keita Bates-Diop",-2.12,523,-0.75,470,-1.38,517,-0.92,505,-0.03,289,-0.89,525,0.56,75,0.23,130,0.33,92,-0.9,460,-0.32,404,-0.58,441,-0.39,437,-0.33,453,-0.05,306,-2.01,515,-0.52,420,-1.48,513,"2019-20",1610612750,"MIN","1628966_2019-20","No Role Available"
101135,"David Lee",0.82,79,0.73,47,0.08,169,0.68,49,0.03,223,0.66,36,0.65,59,1.01,10,-0.35,390,0.23,172,0.1,191,0.13,191,-0.09,291,0.35,68,-0.44,448,1.42,49,0.81,58,0.62,88,"2016-17",1610612759,"SAS","101135_2016-17","No Role Available"
101138,"Brandon Bass",-1.65,474,-1.03,471,-0.62,406,-0.58,433,-0.57,459,0.01,216,0.21,150,0.17,153,0.05,217,-0.43,340,-0.1,287,-0.33,351,-0.75,460,-0.69,481,-0.06,288,-1.62,456,-1.48,478,-0.14,250,"2016-17",1610612746,"LAC","101138_2016-17","No Role Available"
101139,"CJ Miles",0.35,133,0.06,206,0.28,126,-0.08,257,-0.08,298,0.01,206,-1.64,483,-1.12,480,-0.52,426,-0.4,333,-0.13,300,-0.27,333,0.63,48,0.39,59,0.24,96,0.41,143,-0.06,256,0.48,108,"2016-17",1610612754,"IND","101139_2016-17","No Role Available"
1630273,"Freddie Gillespie",-0.36,369,0.05,232,-0.41,408,-0.64,473,-0.18,391,-0.46,467,0.18,188,-0.02,266,0.21,151,-0.11,296,-0.6,479,0.48,104,0.1,206,0.16,145,-0.06,322,-0.98,450,-0.31,380,-0.67,439,"2020-21",1610612761,"TOR","1630273_2020-21","No Role Available"
1628971,"Bruce Brown",1.28,50,0.06,222,1.21,25,0.4,125,-0.24,426,0.64,52,0.91,34,0.63,49,0.27,128,1.2,45,-0.59,478,1.79,7,0.05,240,0.04,225,0.01,264,0.86,107,-0.56,448,1.43,40,"2020-21",1610612751,"BKN","1628971_2020-21","Big, Shooter"
1626195,"Willy Hernangomez",-0.97,473,-1.21,521,0.25,143,-0.77,486,-0.7,518,-0.07,306,1.2,15,0.35,106,0.85,22,1.48,33,0.07,239,1.41,12,-0.86,519,-0.61,520,-0.25,441,-1.19,474,-1.57,522,0.38,129,"2018-19",1610612766,"CHA","1626195_2018-19","No Role Available"
1628968,"Brian Bowen II",0.11,213,0.08,222,0.03,239,0.17,169,0.07,212,0.1,191,-0.15,318,-0.03,278,-0.12,335,0.32,173,0.07,238,0.25,162,-0.13,340,-0.07,330,-0.06,313,0.26,178,0.12,215,0.14,203,"2019-20",1610612754,"IND","1628968_2019-20","No Role Available"
101141,"Ersan Ilyasova",0.18,162,0.41,101,-0.23,306,0.57,66,0.26,102,0.32,89,-0.38,375,-0.52,422,0.14,166,-0.74,409,-0.56,431,-0.17,309,0.33,103,0.62,18,-0.29,405,0.62,117,0.61,92,0.01,204,"2016-17",0,"League","101141_2016-17","No Role Available"
1628969,"Mikal Bridges",0.99,66,0.77,47,0.22,169,0.48,88,0.21,147,0.27,120,0.53,79,0.18,155,0.35,85,0.02,251,0.35,125,-0.33,384,0.21,151,0.3,79,-0.1,338,1.38,49,0.66,86,0.72,84,"2019-20",1610612756,"PHX","1628969_2019-20","No Role Available"
1628973,"Jalen Brunson",0.61,113,0.15,185,0.46,111,1.01,25,0.58,43,0.43,67,0.03,245,0.34,90,-0.31,422,-0.27,335,-0.41,432,0.14,193,0.43,86,0.1,187,0.34,72,1.94,23,1.03,42,0.91,52,"2019-20",1610612742,"DAL","1628973_2019-20","No Role Available"
1628975,"Jevon Carter",-0.06,264,0.62,74,-0.67,445,-0.33,395,-0.11,326,-0.22,400,-0.36,410,-0.64,502,0.28,110,-0.68,423,-0.27,389,-0.4,403,0.49,66,0.74,13,-0.25,428,0.02,246,0.45,130,-0.44,392,"2019-20",1610612756,"PHX","1628975_2019-20","No Role Available"
1628976,"Wendell Carter Jr.",0.15,203,1.04,24,-0.89,486,0.01,267,0.38,83,-0.39,458,0.06,228,-0.11,327,0.17,154,1.47,28,0.59,67,0.88,50,0.22,144,0.49,37,-0.26,432,0.43,151,0.98,47,-0.56,413,"2019-20",1610612741,"CHI","1628976_2019-20","No Role Available"
1628977,"Hamidou Diallo",-1.27,492,0.2,170,-1.46,521,0.35,118,0.68,26,-0.33,439,-0.97,507,-0.53,480,-0.43,457,1.28,38,0.56,72,0.72,64,-0.44,453,-0.22,414,-0.23,417,0.18,193,1.1,35,-0.92,478,"2019-20",1610612760,"OKC","1628977_2019-20","No Role Available"
1628978,"Donte DiVincenzo",1.72,18,1.24,13,0.48,107,1.12,19,0.6,38,0.52,44,0.24,153,0.21,147,0.03,240,1.49,27,0.43,102,1.06,31,0.19,158,0.32,73,-0.12,355,2.41,11,1.51,16,0.9,55,"2019-20",1610612749,"MIL","1628978_2019-20","No Role Available"
101145,"Monta Ellis",-0.77,412,-0.46,391,-0.31,330,-0.03,237,-0.23,369,0.19,127,-0.49,401,-0.35,392,-0.14,311,-0.69,395,-0.49,418,-0.2,314,0.53,60,0.34,70,0.19,118,-0.17,267,-0.42,368,0.25,140,"2016-17",1610612754,"IND","101145_2016-17","No Role Available"
1628980,"Jacob Evans",-0.7,419,0.26,151,-0.95,492,-0.64,478,0.03,237,-0.68,504,0.44,95,-0.23,384,0.67,33,0.48,143,0.18,173,0.3,147,0.18,166,0.2,122,-0.02,280,-0.66,406,0.1,224,-0.76,453,"2019-20",1610612744,"GSW","1628980_2019-20","No Role Available"
200794,"Paul Millsap",1.04,57,1.28,11,-0.25,311,0.77,44,0.57,30,0.2,122,0.85,38,0.38,90,0.47,69,-0.9,434,0.07,206,-0.97,463,0.92,15,0.63,17,0.3,77,1.83,31,1.56,11,0.27,134,"2016-17",1610612737,"ATL","200794_2016-17","No Role Available"
1628455,"Mike James",-0.03,246,-0.06,292,0.03,233,0.14,190,0.07,215,0.07,198,-0.32,386,-0.06,290,-0.26,401,-0.47,400,-0.28,384,-0.2,339,0.15,172,-0.07,327,0.22,115,-0.08,272,-0.11,301,0.02,229,"2020-21",1610612751,"BKN","1628455_2020-21","No Role Available"
1628981,"Bruno Fernando",-1.06,474,-0.33,400,-0.73,461,0.11,192,0.43,63,-0.32,437,-0.72,484,-0.63,500,-0.09,318,1.79,18,0.1,222,1.7,8,-0.82,508,0.18,142,-1,528,-0.46,361,0.45,131,-0.91,476,"2019-20",1610612737,"ATL","1628981_2019-20","No Role Available"
1628982,"Melvin Frazier Jr.",-0.46,387,-0.27,387,-0.19,334,-0.36,407,-0.21,384,-0.15,365,-0.07,294,-0.14,346,0.07,210,-0.27,336,-0.51,450,0.24,168,0.13,188,0.28,88,-0.14,374,-0.63,404,-0.32,366,-0.31,361,"2019-20",1610612753,"ORL","1628982_2019-20","No Role Available"
1628983,"Shai Gilgeous-Alexander",-0.15,299,-0.94,495,0.79,61,-0.11,304,-0.17,368,0.06,211,0.96,32,0.65,39,0.31,101,-0.74,437,-0.05,300,-0.69,458,0.49,67,0.02,256,0.48,39,0.4,155,-0.24,343,0.64,96,"2019-20",1610612760,"OKC","1628983_2019-20","No Role Available"
1628984,"Devonte Graham",-0.16,301,-0.82,478,0.66,86,-0.51,447,-0.88,522,0.38,86,0.89,35,0.32,93,0.57,53,-0.77,441,-1.38,523,0.61,81,0.3,123,0.3,77,0.01,270,-0.39,352,-1.27,505,0.88,59,"2019-20",1610612766,"CHA","1628984_2019-20","No Role Available"
1628985,"Devon Hall",-0.17,305,0.26,148,-0.43,406,0.05,234,0.07,215,-0.02,265,-0.07,289,-0.05,299,0.01,272,0.53,135,0.29,141,0.23,169,0.16,179,0.16,155,0.01,261,0.31,172,0.32,165,0.01,260,"2019-20",1610612760,"OKC","1628985_2019-20","No Role Available"
1628987,"Kevin Hervey",-0.23,326,0.22,166,-0.45,410,-0.5,444,-0.12,340,-0.38,456,0.02,251,0.08,201,-0.06,298,-0.22,322,-0.1,322,-0.12,310,0.2,154,0.18,141,0.02,246,-0.64,405,-0.03,278,-0.6,421,"2019-20",1610612760,"OKC","1628987_2019-20","No Role Available"
1628988,"Aaron Holiday",-0.12,291,-0.14,343,0.01,244,0.79,42,0.5,51,0.28,113,0.33,126,0.7,36,-0.37,444,-0.61,412,-0.11,326,-0.5,425,0.49,69,-0.06,323,0.55,24,1.17,66,0.47,124,0.7,88,"2019-20",1610612754,"IND","1628988_2019-20","No Role Available"
1628989,"Kevin Huerter",-1.11,479,-0.65,456,-0.46,412,-0.35,406,-0.28,411,-0.07,310,-1.16,520,-0.35,426,-0.81,512,-0.14,298,-0.12,333,-0.02,263,-0.31,412,0.01,286,-0.3,448,-1.24,475,-0.65,445,-0.59,418,"2019-20",1610612737,"ATL","1628989_2019-20","No Role Available"
1628990,"Chandler Hutchison",-1.33,498,-0.73,466,-0.6,431,-0.74,492,-0.4,452,-0.34,443,-0.06,286,-0.23,381,0.16,156,-0.16,304,0.18,176,-0.34,387,-0.32,415,0.25,99,-0.57,511,-1.49,495,-0.18,323,-1.31,507,"2019-20",1610612741,"CHI","1628990_2019-20","No Role Available"
1628991,"Jaren Jackson Jr.",-0.18,312,0.02,257,-0.2,341,-0.37,411,-0.32,432,-0.04,282,-0.54,453,-0.39,444,-0.16,354,-1.45,504,-0.08,309,-1.37,521,-0.21,379,0.01,260,-0.22,416,-1.23,474,-0.66,446,-0.57,414,"2019-20",1610612763,"MEM","1628991_2019-20","No Role Available"
1628993,"Alize Johnson",0.17,198,0.24,154,-0.08,282,0.17,171,0.17,161,0.01,251,0.03,244,-0.06,301,0.09,202,0.99,64,0.39,114,0.6,85,0.15,180,0.06,213,0.09,187,0.62,127,0.46,128,0.16,194,"2019-20",1610612754,"IND","1628993_2019-20","No Role Available"
1628997,"Caleb Martin",-0.27,342,0.26,149,-0.53,419,0.1,198,0.32,100,-0.22,398,0.25,148,0.27,119,-0.02,274,-1.12,478,-0.65,471,-0.47,416,0.3,120,0.24,100,0.06,210,0.35,166,0.73,71,-0.39,380,"2019-20",1610612766,"CHA","1628997_2019-20","No Role Available"
101161,"Amir Johnson",0.33,135,0.7,50,-0.37,356,1.36,11,0.76,9,0.61,43,-0.66,437,0.86,21,-1.52,486,0.94,53,0.47,79,0.47,98,0.14,157,0.01,213,0.13,154,2.22,18,1.54,13,0.68,77,"2016-17",1610612738,"BOS","101161_2016-17","No Role Available"
1628998,"Cody Martin",1.4,37,0.48,93,0.92,45,-0.86,502,-0.54,486,-0.32,436,1.25,12,0.31,96,0.94,15,1.63,21,0.77,42,0.86,52,1.43,1,0.81,11,0.63,18,0.49,142,0.32,166,0.18,188,"2019-20",1610612766,"CHA","1628998_2019-20","No Role Available"
2555,"Nick Collison",0.03,226,0.23,144,-0.19,358,0.04,208,0.02,239,0.02,223,-0.11,317,0.1,199,-0.2,370,-0.06,298,0.12,219,-0.18,351,0.04,243,0.07,193,-0.03,310,0.03,241,0.14,204,-0.11,301,"2017-18",1610612760,"OKC","2555_2017-18","No Role Available"
1626203,"Treveon Graham",0.41,129,-0.06,300,0.47,99,0.13,180,0.15,159,-0.02,258,0.39,118,0.47,69,-0.08,311,0.03,238,0.18,182,-0.15,337,0.35,98,0.01,251,0.35,53,1.03,75,0.58,91,0.44,117,"2018-19",1610612751,"BKN","1626203_2018-19","No Role Available"
1629001,"DeAnthony Melton",1.99,15,1.33,10,0.65,87,0.44,98,0.17,162,0.27,117,0.33,127,-0.33,423,0.66,38,0.94,70,0.31,134,0.63,76,0.82,17,0.62,22,0.21,112,1.95,22,1.09,37,0.85,64,"2019-20",1610612763,"MEM","1629001_2019-20","No Role Available"
101162,"Marcin Gortat",0.92,68,-0.16,312,1.08,39,0.21,147,-0.36,417,0.57,51,-0.04,247,0.95,14,-0.99,476,0.64,93,0.05,216,0.59,69,0.04,216,-0.15,339,0.19,114,0.57,125,-0.3,330,0.87,66,"2016-17",1610612764,"WAS","101162_2016-17","No Role Available"
101179,"Ronnie Price",-0.58,373,-0.14,301,-0.44,372,-0.52,421,-0.19,351,-0.33,396,-0.35,364,-0.38,398,0.03,228,0.15,195,-0.09,282,0.24,150,-0.03,254,0.01,232,-0.02,264,-0.81,386,-0.43,372,-0.38,332,"2016-17",1610612756,"PHX","101179_2016-17","No Role Available"
1629002,"Chimezie Metu",-0.19,316,-0.13,341,-0.06,274,0.01,260,0.06,224,-0.06,292,0.56,77,0.3,100,0.25,121,0.14,215,-0.28,393,0.43,111,-0.2,371,-0.12,360,-0.08,325,-0.18,297,-0.02,271,-0.17,314,"2019-20",1610612759,"SAS","1629002_2019-20","No Role Available"
1629003,"Shake Milton",0.14,205,-1.12,511,1.25,25,0.07,213,-0.42,460,0.49,49,-0.32,386,-0.41,453,0.09,200,-0.18,306,-0.07,305,-0.11,299,0.06,224,-0.7,516,0.76,8,-0.09,271,-1.49,517,1.39,24,"2019-20",1610612755,"PHI","1629003_2019-20","No Role Available"
1629004,"Svi Mykhailiuk",0.52,119,0.22,164,0.29,156,0.08,208,-0.02,278,0.1,188,-0.11,305,-0.18,365,0.07,211,-0.61,414,0.35,124,-0.96,497,0.74,29,0.43,45,0.31,79,0.74,112,0.37,154,0.37,147,"2019-20",1610612765,"DET","1629004_2019-20","No Role Available"
101181,"Jose Calderon",-0.67,392,-0.02,250,-0.65,414,-0.55,426,0.03,213,-0.58,457,-0.27,338,0.19,146,-0.46,411,0.78,69,0.64,43,0.14,177,-0.42,413,-0.07,279,-0.35,430,-0.97,405,0.26,156,-1.23,459,"2016-17",0,"League","101181_2016-17","No Role Available"
101187,"Alan Anderson",-1.08,442,-1.01,469,-0.07,233,-0.31,350,-0.27,383,-0.04,239,-1.08,469,-0.52,424,-0.55,432,-0.33,323,0.01,242,-0.33,353,-0.25,358,-0.38,439,0.13,149,-1.06,421,-0.83,431,-0.23,295,"2016-17",1610612746,"LAC","101187_2016-17","No Role Available"
1629005,"Malik Newman",-0.06,267,0.01,276,-0.05,271,-0.02,269,0.01,255,-0.03,271,0.02,250,0.03,232,0.01,257,-0.08,283,-0.04,291,-0.04,269,-0.02,279,0.01,266,-0.03,287,-0.06,260,0.01,257,-0.07,279,"2019-20",1610612739,"CLE","1629005_2019-20","No Role Available"
1629006,"Josh Okogie",-0.85,443,-0.45,424,-0.4,401,-0.55,455,-0.31,424,-0.24,409,0.78,43,0.23,135,0.55,55,-0.96,466,-0.74,484,-0.22,344,-0.07,311,0.34,70,-0.41,485,-0.97,451,-0.25,348,-0.71,441,"2019-20",1610612750,"MIN","1629006_2019-20","No Role Available"
201579,"Roy Hibbert",-0.12,253,0.43,97,-0.54,398,-0.03,233,0.4,68,-0.42,425,0.69,52,0.12,170,0.58,50,0.11,210,0.21,145,-0.1,288,-0.76,462,-0.65,477,-0.11,321,-0.09,246,0.34,133,-0.44,347,"2016-17",0,"League","201579_2016-17","No Role Available"
1629008,"Michael Porter Jr.",1.14,55,0.1,212,1.04,34,-0.19,346,-0.58,496,0.39,81,-0.43,425,-0.15,350,-0.28,412,0.79,88,-0.35,414,1.15,26,-0.23,388,-0.26,428,0.03,234,-0.16,289,-0.99,484,0.83,66,"2019-20",1610612743,"DEN","1629008_2019-20","No Role Available"
1629010,"Jerome Robinson",-0.6,405,0.19,173,-0.79,468,-0.02,270,0.13,174,-0.15,366,-0.27,367,-0.39,445,0.12,182,-0.06,277,0.73,48,-0.79,480,0.01,271,0.07,202,-0.07,321,-0.41,355,0.22,188,-0.63,427,"2019-20",1610612746,"LAC","1629010_2019-20","No Role Available"
101249,"John Lucas III",0.15,171,0.08,198,0.07,173,0.04,197,0.04,207,0.01,207,0.16,166,0.05,213,0.1,189,-0.07,269,-0.11,291,0.04,224,0.05,210,0.03,196,0.02,225,0.14,186,0.09,196,0.05,193,"2016-17",1610612750,"MIN","101249_2016-17","No Role Available"
1629012,"Collin Sexton",-1.25,491,-1.87,527,0.62,89,-1.01,509,-1.46,529,0.45,62,0.29,133,0.01,246,0.28,108,0.49,141,-0.41,431,0.91,48,-0.4,443,-0.29,440,-0.11,344,-1.75,505,-2.36,528,0.61,100,"2019-20",1610612739,"CLE","1629012_2019-20","No Role Available"
1629013,"Landry Shamet",0.52,120,-0.2,359,0.71,77,0.16,173,0.17,160,0.01,259,-1.04,509,-0.32,419,-0.72,501,-0.92,462,-0.42,435,-0.5,424,-0.1,333,-0.45,481,0.35,69,-0.29,332,-0.6,434,0.31,154,"2019-20",1610612746,"LAC","1629013_2019-20","No Role Available"
1629014,"Anfernee Simons",-2.77,529,-1.7,526,-1.07,500,-1.18,516,-0.43,462,-0.75,512,-1.05,511,-0.77,515,-0.27,410,-0.51,395,-0.66,473,0.16,188,-1.1,525,-1.05,528,-0.06,310,-3.21,529,-2.11,527,-1.1,493,"2019-20",1610612757,"POR","1629014_2019-20","No Role Available"
1629015,"Zhaire Smith",0.05,231,-0.03,290,0.08,227,-0.18,335,-0.13,346,-0.05,286,0.17,181,0.01,249,0.17,155,0.27,180,0.02,261,0.25,160,-0.14,348,0.01,291,-0.13,361,-0.2,304,-0.21,331,0.01,249,"2019-20",1610612755,"PHI","1629015_2019-20","No Role Available"
1629016,"Omari Spellman",-1.01,467,0.1,210,-1.11,502,-1.3,524,-0.28,412,-1.02,528,1.08,24,0.6,47,0.48,65,0.57,123,0.06,245,0.51,97,-0.46,458,-0.31,448,-0.15,375,-1.62,500,-0.45,405,-1.17,500,"2019-20",1610612744,"GSW","1629016_2019-20","No Role Available"
1626143,"Jahlil Okafor",-2.12,481,-0.86,458,-1.26,472,-1.49,482,-0.46,441,-1.03,483,-0.3,349,0.41,84,-0.71,457,-0.93,437,0.01,240,-0.93,458,-0.26,370,-0.44,447,0.18,121,-2.93,483,-0.92,443,-2.02,483,"2016-17",1610612755,"PHI","1626143_2016-17","No Role Available"
1629017,"Khyri Thomas",-0.41,377,-0.22,369,-0.19,335,-0.34,402,-0.07,310,-0.27,422,-0.24,356,-0.32,420,0.08,205,-0.72,432,-0.54,457,-0.18,335,0.13,186,-0.05,318,0.18,124,-0.54,383,-0.24,344,-0.3,357,"2019-20",1610612765,"DET","1629017_2019-20","No Role Available"
1626144,"Emmanuel Mudiay",-0.91,424,-0.81,449,-0.11,244,-0.68,447,-0.5,449,-0.17,327,0.09,191,0.02,232,0.07,202,0.61,98,0.26,134,0.35,129,-0.57,444,-0.31,420,-0.26,397,-1.43,453,-1.06,458,-0.37,330,"2016-17",1610612743,"DEN","1626144_2016-17","No Role Available"
1626145,"Tyus Jones",0.02,208,-0.36,366,0.39,104,-0.3,340,-0.27,384,-0.03,224,-0.48,399,-0.81,466,0.33,99,-1.19,453,-1.28,483,0.09,206,0.99,5,0.61,19,0.38,53,0.01,214,-0.48,380,0.48,107,"2016-17",1610612750,"MIN","1626145_2016-17","No Role Available"
1629019,"Allonzo Trier",-0.45,384,-0.08,322,-0.37,390,-0.4,421,-0.22,393,-0.18,378,-0.21,345,-0.35,427,0.14,172,-0.43,378,0.06,243,-0.49,420,-0.25,391,-0.03,302,-0.22,414,-0.81,429,-0.23,337,-0.58,416,"2019-20",1610612752,"NYK","1629019_2019-20","No Role Available"
1629020,"Jarred Vanderbilt",-0.19,314,-0.07,315,-0.11,298,-0.22,362,-0.16,363,-0.06,297,-0.65,472,-0.38,442,-0.26,404,-0.39,369,-0.36,415,-0.04,268,-0.12,335,0.1,186,-0.21,406,-0.56,385,-0.26,351,-0.3,356,"2019-20",1610612743,"DEN","1629020_2019-20","No Role Available"
1626154,"RJ Hunter",-0.16,268,0.02,222,-0.18,285,-0.04,241,0.09,181,-0.12,291,-0.18,298,-0.1,297,-0.08,271,0.1,212,0.07,208,0.03,226,-0.04,259,-0.04,263,0.01,240,-0.11,250,0.1,194,-0.21,288,"2016-17",1610612741,"CHI","1626154_2016-17","No Role Available"
1629023,"P.J. Washington",-1.73,512,-0.09,325,-1.63,526,0.16,174,0.32,99,-0.16,367,0.36,117,0.81,24,-0.45,462,-1.8,515,-0.47,445,-1.33,518,-0.52,469,-0.07,332,-0.45,496,-0.53,378,0.65,88,-1.18,502,"2019-20",1610612766,"CHA","1629023_2019-20","No Role Available"
1626155,"Sam Dekker",-0.65,391,-0.13,297,-0.52,394,0.16,165,-0.34,413,0.5,54,-0.25,329,0.05,216,-0.3,373,-0.5,357,-0.52,424,0.02,236,-0.55,438,-0.05,269,-0.5,458,-0.16,265,-0.6,398,0.43,116,"2016-17",1610612745,"HOU","1626155_2016-17","No Role Available"
1629027,"Trae Young",-0.63,408,-2.11,529,1.48,16,0.43,99,-0.51,483,0.95,6,-0.39,415,-0.49,469,0.1,194,-1.65,511,-0.92,501,-0.73,465,-0.25,393,-0.4,465,0.15,147,-0.06,261,-1.84,523,1.78,11,"2019-20",1610612737,"ATL","1629027_2019-20","No Role Available"
1626156,"DAngelo Russell",-0.75,408,-0.84,455,0.09,164,-0.81,462,-0.81,479,0.01,213,-0.31,353,-0.51,420,0.2,140,-0.69,397,-0.24,351,-0.45,380,0.68,41,0.49,36,0.19,117,-1.37,450,-1.27,472,-0.1,241,"2016-17",1610612747,"LAL","1626156_2016-17","No Role Available"
1626159,"Justise Winslow",0.07,192,0.3,133,-0.22,300,0.35,114,0.45,52,-0.1,272,-0.12,273,-0.04,266,-0.08,277,-0.25,310,0.04,226,-0.29,340,0.11,175,-0.17,346,0.28,83,0.01,217,0.57,97,-0.57,384,"2016-17",1610612748,"MIA","1626159_2016-17","No Role Available"
1629028,"Deandre Ayton",0.54,118,0.13,194,0.42,124,0.54,72,0.5,52,0.04,224,0.04,241,0.35,86,-0.31,421,1.44,29,0.21,162,1.23,22,-0.12,336,-0.03,303,-0.09,331,1.06,76,0.76,68,0.31,157,"2019-20",1610612756,"PHX","1629028_2019-20","No Role Available"
1629029,"Luka Doncic",1.41,36,-0.7,463,2.11,4,0.72,49,-0.14,349,0.86,13,2.08,3,0.61,46,1.47,3,1.26,40,0.44,97,0.82,54,-0.69,493,-0.77,520,0.07,199,1.37,52,-0.61,435,1.98,9,"2019-20",1610612742,"DAL","1629029_2019-20","No Role Available"
1626204,"Larry Nance Jr.",-0.42,379,-0.34,412,-0.08,296,-0.32,411,-0.45,472,0.14,161,-0.24,364,0.06,210,-0.3,411,1.65,22,0.75,43,0.91,47,-0.45,462,-0.11,348,-0.34,474,-0.87,437,-0.7,463,-0.17,321,"2018-19",1610612739,"CLE","1626204_2018-19","No Role Available"
1629017,"Khyri Thomas",-0.4,378,-0.34,408,-0.07,280,0.49,96,-0.09,342,0.58,60,-0.3,377,-0.1,319,-0.2,374,-0.43,393,-0.1,310,-0.33,387,0.06,236,-0.03,299,0.09,188,0.56,142,-0.23,355,0.8,87,"2020-21",1610612745,"HOU","1629017_2020-21","No Role Available"
203263,"James Nunnally",0.2,190,0.01,254,0.19,175,-0.15,326,-0.03,287,-0.12,326,0.13,208,0.15,168,-0.02,273,0.55,120,0.31,144,0.24,175,0.08,223,-0.07,325,0.15,153,0.01,240,0.03,246,-0.02,241,"2020-21",1610612740,"NOP","203263_2020-21","No Role Available"
1629033,"Theo Pinson",-0.57,404,0.55,84,-1.12,503,-0.06,285,0.56,45,-0.62,499,-0.76,489,-0.05,296,-0.71,498,-0.84,447,-0.8,490,-0.04,274,0.16,174,0.3,82,-0.13,365,-0.59,393,0.67,81,-1.25,505,"2019-20",1610612751,"BKN","1629033_2019-20","No Role Available"
1626209,"Mario Hezonja",-0.14,303,0.15,175,-0.29,377,-0.82,493,-0.22,406,-0.6,502,0.66,56,0.61,38,0.05,219,-0.3,353,-0.72,484,0.41,106,0.06,225,0.29,93,-0.23,423,-0.88,440,-0.14,315,-0.74,463,"2018-19",1610612752,"NYK","1626209_2018-19","No Role Available"
1629044,"Shamorie Ponds",0.01,247,0.01,275,0.01,246,0.01,263,-0.04,292,0.03,236,-0.08,301,-0.07,313,0.01,270,-0.02,264,0.01,269,-0.03,265,0.06,225,0.04,231,0.02,241,0.05,236,-0.05,286,0.09,222,"2019-20",1610612761,"TOR","1629044_2019-20","No Role Available"
1626162,"Kelly Oubre Jr.",0.12,183,0.1,186,0.02,193,0.1,178,0.08,186,0.02,191,-0.15,285,-0.26,358,0.11,187,0.29,155,-0.42,401,0.7,48,0.15,152,0.38,62,-0.22,385,0.07,203,0.14,188,-0.07,229,"2016-17",1610612764,"WAS","1626162_2016-17","No Role Available"
1629048,"Goga Bitadze",-1.16,482,-0.45,422,-0.71,451,-0.05,281,0.15,167,-0.21,390,-0.29,377,-0.17,358,-0.13,337,-0.68,424,-0.11,328,-0.57,438,-0.73,495,-0.45,479,-0.28,439,-0.83,434,-0.02,275,-0.81,463,"2019-20",1610612754,"IND","1629048_2019-20","No Role Available"
1629052,"Oshae Brissett",-0.12,290,-0.07,316,-0.05,268,0.5,81,0.37,88,0.13,171,-0.58,460,-0.36,435,-0.22,381,0.39,156,0.12,207,0.27,154,-0.15,351,-0.06,328,-0.08,327,0.57,131,0.42,143,0.16,195,"2019-20",1610612761,"TOR","1629052_2019-20","No Role Available"
1629056,"Terence Davis",0.5,121,-0.06,306,0.56,99,1.15,18,0.5,53,0.65,26,-0.48,440,-0.73,511,0.25,123,0.99,65,-0.41,430,1.39,18,-0.19,366,0.1,183,-0.29,443,1.43,45,0.12,217,1.31,28,"2019-20",1610612761,"TOR","1629056_2019-20","No Role Available"
1626164,"Devin Booker",-0.2,285,-0.83,452,0.63,78,0.49,82,0.16,146,0.33,84,0.18,160,-0.71,459,0.89,21,0.14,198,-0.42,403,0.56,74,-0.8,465,-0.13,319,-0.68,477,0.1,199,-0.71,414,0.82,69,"2016-17",1610612756,"PHX","1626164_2016-17","No Role Available"
1626166,"Cameron Payne",-1.01,434,-0.21,327,-0.8,444,-0.42,385,-0.03,265,-0.39,414,-0.68,442,-0.09,294,-0.59,444,-1.05,445,-0.21,336,-0.84,449,-0.08,282,0.14,142,-0.22,382,-0.87,395,0.13,191,-1,446,"2016-17",0,"League","1626166_2016-17","No Role Available"
1629057,"Robert Williams III",0.16,201,-0.32,399,0.48,106,0.21,156,-0.25,400,0.46,59,0.07,222,0.03,226,0.04,234,-1.45,505,-1.43,525,-0.02,260,0.59,55,0.47,40,0.12,164,0.37,160,-0.44,404,0.82,70,"2019-20",1610612738,"BOS","1629057_2019-20","No Role Available"
1629058,"Dzanan Musa",-0.29,347,0.42,104,-0.71,452,-0.43,431,-0.03,285,-0.4,460,0.2,165,0.04,221,0.16,157,-0.3,347,-0.43,441,0.13,201,0.04,231,0.15,160,-0.11,343,-0.54,380,0.09,229,-0.63,426,"2019-20",1610612751,"BKN","1629058_2019-20","No Role Available"
1629059,"Elie Okobo",-0.44,381,-0.15,347,-0.29,367,-0.41,426,0.02,247,-0.43,468,-0.43,427,-0.3,409,-0.13,344,-1.37,499,-1.21,514,-0.16,327,0.4,97,0.24,105,0.16,136,-0.9,442,-0.24,339,-0.66,432,"2019-20",1610612756,"PHX","1629059_2019-20","No Role Available"
1629060,"Rui Hachimura",-1.73,513,-0.81,476,-0.92,488,-1.11,514,-1.03,525,-0.08,312,-0.22,348,-0.18,364,-0.05,294,-1.51,507,-0.68,475,-0.83,486,0.04,236,0.2,121,-0.17,383,-1.9,510,-1.41,513,-0.49,400,"2019-20",1610612764,"WAS","1629060_2019-20","No Role Available"
1629018,"Gary Trent Jr.",-0.74,449,-1.2,529,0.46,111,-1.37,531,-0.69,523,-0.68,512,-0.55,450,-0.36,437,-0.2,370,-1.53,519,-1.35,531,-0.18,333,1.14,6,0.12,176,1.02,1,-1.32,492,-1.51,527,0.18,186,"2020-21",1610612757,"POR","1629018_2020-21","Wing, Shooter"
1629065,"Ky Bowman",-1.05,473,0.4,106,-1.46,520,-0.85,501,-0.09,322,-0.76,513,0.18,178,0.34,89,-0.16,353,-0.45,385,0.22,157,-0.67,451,0.01,268,0.25,95,-0.25,429,-1.06,459,0.49,118,-1.55,521,"2019-20",1610612744,"GSW","1629065_2019-20","No Role Available"
1629066,"Rodions Kurucs",-0.66,413,0.1,211,-0.76,464,0.6,70,0.71,24,-0.11,334,-0.89,501,-0.82,519,-0.07,306,-0.12,292,-0.23,378,0.11,210,-0.48,463,-0.06,324,-0.43,491,-0.17,293,0.64,91,-0.81,462,"2019-20",1610612751,"BKN","1629066_2019-20","No Role Available"
1629067,"Isaac Bonga",0.91,77,1.42,9,-0.52,417,-0.13,313,0.4,75,-0.53,485,-0.06,280,0.21,145,-0.26,405,2.02,15,0.68,53,1.34,19,1.04,7,1.17,1,-0.13,367,1.04,77,1.73,10,-0.69,438,"2019-20",1610612764,"WAS","1629067_2019-20","No Role Available"
1629076,"Tyler Cook",0.17,197,0.16,182,0.01,247,-0.27,378,-0.21,383,-0.06,295,0.21,161,0.01,258,0.22,133,-0.42,376,-0.35,409,-0.08,287,0.07,211,0.04,228,0.03,235,-0.33,343,-0.34,374,0.01,248,"2019-20",1610612739,"CLE","1629076_2019-20","No Role Available"
201980,"Danny Green",1.35,44,0.58,70,0.77,60,0.5,81,0.63,21,-0.13,295,0.67,56,0.52,63,0.15,160,0.46,119,-0.22,342,0.68,59,-0.02,247,-0.24,387,0.22,103,1.44,48,1.1,30,0.34,127,"2016-17",1610612759,"SAS","201980_2016-17","No Role Available"
1629103,"Kelan Martin",-0.24,331,0.38,112,-0.62,435,0.06,221,0.65,31,-0.59,493,0.05,238,-0.13,342,0.19,147,-0.39,370,-0.17,351,-0.22,345,0.04,237,0.18,147,-0.14,371,0.17,196,1.08,38,-0.91,475,"2019-20",1610612750,"MIN","1629103_2019-20","No Role Available"
1626167,"Myles Turner",0.5,108,0.28,136,0.23,135,1.06,20,0.49,43,0.57,50,0.93,32,0.56,58,0.37,91,-0.88,430,-0.23,347,-0.65,415,-0.54,435,-0.03,249,-0.51,460,1.13,68,0.6,93,0.53,99,"2016-17",1610612754,"IND","1626167_2016-17","No Role Available"
1629122,"J.P. Macura",0.01,240,0.02,255,0.01,254,0.04,240,0.01,256,0.02,240,0.01,263,0.01,244,0.01,262,0.02,253,0.02,264,0.01,250,0.01,267,0.01,283,0.01,257,0.06,234,0.02,255,0.04,242,"2019-20",1610612739,"CLE","1629122_2019-20","No Role Available"
1629134,"Kendrick Nunn",-1.29,493,-0.43,420,-0.86,482,0.13,182,-0.21,388,0.35,93,-0.34,398,0.18,153,-0.52,472,-0.02,262,0.35,122,-0.37,394,-0.47,461,0.04,227,-0.52,505,-0.58,392,-0.27,353,-0.31,359,"2019-20",1610612748,"MIA","1629134_2019-20","No Role Available"
1626168,"Trey Lyles",0.07,196,0.43,96,-0.36,352,0.07,189,0.37,74,-0.3,386,0.01,228,-0.12,309,0.12,184,0.02,238,0.25,136,-0.23,321,-0.43,415,-0.43,445,0.01,246,-0.21,276,0.34,134,-0.55,378,"2016-17",1610612762,"UTA","1626168_2016-17","No Role Available"
1629139,"Yuta Watanabe",0.48,124,0.37,118,0.12,212,-0.07,286,0.01,265,-0.07,301,0.17,180,0.23,131,-0.06,301,0.02,250,-0.37,418,0.39,115,0.2,155,0.23,109,-0.03,286,0.17,197,0.24,184,-0.08,286,"2019-20",1610612763,"MEM","1629139_2019-20","No Role Available"
1629151,"Ryan Broekhoff",-0.77,433,-0.4,409,-0.37,391,0.04,237,-0.16,365,0.2,143,-0.15,320,-0.05,298,-0.1,326,-0.38,366,-0.19,356,-0.2,338,-0.32,413,-0.31,447,0.01,266,-0.21,308,-0.51,417,0.3,159,"2019-20",1610612742,"DAL","1629151_2019-20","No Role Available"
1629162,"Jordan McLaughlin",-0.79,436,-0.49,434,-0.3,369,-0.56,456,-0.51,482,-0.04,285,-0.11,307,-0.26,395,0.15,163,-0.48,391,-0.03,285,-0.45,414,0.63,49,0.48,38,0.15,144,-0.58,391,-0.42,397,-0.16,311,"2019-20",1610612750,"MIN","1629162_2019-20","No Role Available"
1629164,"Brandon Goodwin",-0.34,363,0.3,134,-0.64,438,-0.71,488,0.01,263,-0.71,509,-0.18,334,0.09,191,-0.27,409,-0.73,434,-0.05,298,-0.68,455,0.16,173,0.02,252,0.14,149,-1.07,460,0.05,240,-1.11,496,"2019-20",1610612737,"ATL","1629164_2019-20","No Role Available"
1629168,"BJ Johnson",0.22,181,0.17,179,0.05,233,-0.22,358,-0.06,306,-0.15,363,0.4,108,0.08,202,0.32,98,0.01,256,-0.16,348,0.17,185,0.09,201,0.15,158,-0.06,311,0.03,242,0.13,211,-0.11,298,"2019-20",1610612753,"ORL","1629168_2019-20","No Role Available"
1629216,"Gabe Vincent",0.1,215,0.24,155,-0.15,311,-0.33,398,-0.09,319,-0.24,411,-0.06,282,-0.05,300,0.01,265,-0.29,344,-0.08,311,-0.21,343,0.08,207,0.11,177,-0.03,289,-0.48,368,-0.03,280,-0.44,394,"2019-20",1610612748,"MIA","1629216_2019-20","No Role Available"
1629234,"Drew Eubanks",-0.71,421,0.02,256,-0.73,458,-0.59,462,-0.32,428,-0.27,420,0.55,78,0.01,241,0.54,57,0.39,155,0.33,131,0.07,231,-0.4,444,0.01,290,-0.39,479,-0.92,445,-0.41,393,-0.52,405,"2019-20",1610612759,"SAS","1629234_2019-20","No Role Available"
1629308,"Juan Toscano-Anderson",-0.27,341,0.01,271,-0.26,362,-0.34,404,-0.15,361,-0.19,383,-0.33,393,-0.18,361,-0.16,352,0.72,102,0.14,190,0.58,87,-0.33,423,0.01,285,-0.33,458,-0.71,417,-0.3,358,-0.41,386,"2019-20",1610612744,"GSW","1629308_2019-20","No Role Available"
1629597,"Zylan Cheatham",-0.44,382,-0.28,389,-0.17,321,-0.17,329,-0.09,321,-0.08,313,0.02,249,-0.07,318,0.1,195,0.16,209,0.12,209,0.04,239,-0.38,435,-0.16,384,-0.22,415,-0.57,386,-0.33,370,-0.24,335,"2019-20",1610612740,"NOP","1629597_2019-20","No Role Available"
203087,"Jeremy Lamb",-0.07,276,-0.15,358,0.08,193,-0.12,322,-0.29,448,0.17,144,0.86,31,0.04,233,0.82,28,0.73,80,0.4,99,0.33,136,0.11,200,-0.2,421,0.31,73,0.91,83,-0.34,399,1.25,29,"2017-18",1610612766,"CHA","203087_2017-18","No Role Available"
1629598,"Chris Clemons",-1.22,488,-0.58,446,-0.64,436,-0.58,460,0.01,261,-0.59,492,-0.91,505,-0.19,370,-0.72,502,-1.11,476,-0.51,449,-0.6,442,0.01,259,-0.02,298,0.04,228,-1.31,479,-0.22,333,-1.09,490,"2019-20",1610612745,"HOU","1629598_2019-20","No Role Available"
1626220,"Royce ONeale",0.82,79,0.7,45,0.12,177,1.26,14,0.82,7,0.44,56,-0.89,498,-0.66,496,-0.23,382,0.67,98,1.1,11,-0.43,416,-0.65,497,-0.23,416,-0.42,496,1.2,64,1.33,14,-0.14,310,"2018-19",1610612762,"UTA","1626220_2018-19","No Role Available"
1626169,"Stanley Johnson",1.09,55,0.78,41,0.31,121,-0.15,280,0.03,221,-0.18,333,0.05,206,0.13,161,-0.08,272,2.57,3,1.16,5,1.41,14,0.56,57,0.32,77,0.24,95,0.75,99,0.53,104,0.22,147,"2016-17",1610612765,"DET","1626169_2016-17","No Role Available"
202324,"Derrick Favors",0.28,146,0.18,162,0.1,192,0.23,146,0.31,101,-0.07,307,0.13,201,0.65,32,-0.52,478,1.55,26,0.62,57,0.94,46,-0.77,510,-0.18,385,-0.6,515,0.43,151,0.98,44,-0.55,426,"2018-19",1610612762,"UTA","202324_2018-19","No Role Available"
1626170,"Jerian Grant",-0.1,243,0.07,204,-0.17,271,0.09,181,0.24,108,-0.15,312,0.35,112,0.49,67,-0.14,309,0.29,157,0.62,51,-0.33,354,0.2,141,-0.23,385,0.43,41,0.67,111,0.5,113,0.17,156,"2016-17",1610612741,"CHI","1626170_2016-17","No Role Available"
1626171,"Bobby Portis",-1.21,459,-0.23,336,-0.98,457,-0.46,401,0.04,211,-0.5,442,-0.29,344,0.34,99,-0.64,448,-0.96,442,-0.34,377,-0.62,410,0.38,87,0.05,183,0.33,63,-0.87,394,-0.11,265,-0.75,411,"2016-17",1610612741,"CHI","1626171_2016-17","No Role Available"
1629599,"Amir Coffey",0.01,248,0.35,120,-0.35,386,0.12,191,0.07,216,0.05,221,-0.2,340,-0.14,345,-0.05,296,0.51,139,0.26,149,0.25,161,-0.29,408,-0.19,403,-0.1,339,-0.14,285,-0.07,293,-0.07,276,"2019-20",1610612746,"LAC","1629599_2019-20","No Role Available"
1629605,"Tacko Fall",0.24,176,0.23,160,0.01,251,0.06,220,0.07,213,0.01,253,0.08,216,-0.05,292,0.13,177,-0.1,289,0.18,178,-0.28,366,0.01,270,-0.03,300,0.02,245,0.05,235,0.13,210,-0.08,287,"2019-20",1610612738,"BOS","1629605_2019-20","No Role Available"
1626172,"Kevon Looney",-0.18,274,0.07,202,-0.25,314,-0.28,333,0.03,219,-0.31,392,-0.02,238,-0.05,271,0.04,220,2.03,10,0.46,82,1.57,9,-0.66,453,-0.21,370,-0.44,449,-0.77,382,0.01,228,-0.76,413,"2016-17",1610612744,"GSW","1626172_2016-17","No Role Available"
1626173,"Rashad Vaughn",-0.96,429,-0.15,310,-0.8,443,-0.55,427,-0.02,263,-0.53,450,0.31,126,0.12,168,0.19,150,-0.63,383,0.04,223,-0.67,422,-0.13,309,-0.11,309,-0.02,259,-0.89,398,0.01,229,-0.89,433,"2016-17",1610612749,"MIL","1626173_2016-17","No Role Available"
1626174,"Christian Wood",0.02,210,-0.13,296,0.15,152,0.19,154,0.19,133,0.01,200,0.3,130,0.07,196,0.23,127,0.46,118,0.07,211,0.39,123,-0.33,391,-0.14,331,-0.18,365,0.34,147,0.26,157,0.08,179,"2016-17",1610612766,"CHA","1626174_2016-17","No Role Available"
1626175,"Jordan Mickey",-0.21,288,0.01,239,-0.21,293,-0.39,376,-0.31,396,-0.08,266,0.24,144,0.08,189,0.16,159,0.3,151,0.36,101,-0.05,269,-0.22,345,-0.13,322,-0.1,309,-0.72,375,-0.47,376,-0.25,302,"2016-17",1610612738,"BOS","1626175_2016-17","No Role Available"
202412,"Manny Harris",-0.18,275,-0.19,322,0.01,199,-0.22,306,-0.08,297,-0.14,301,-0.06,256,-0.19,336,0.13,172,-0.07,266,-0.04,265,-0.03,261,0.05,211,-0.04,261,0.09,182,-0.39,312,-0.24,312,-0.16,263,"2016-17",1610612742,"DAL","202412_2016-17","No Role Available"
1629607,"Jared Harper",-0.07,270,-0.02,288,-0.05,270,-0.1,299,-0.1,325,0.01,249,-0.03,274,-0.03,283,0.01,255,-0.26,330,-0.2,362,-0.06,277,0.03,241,0.05,218,-0.02,281,-0.16,291,-0.14,317,-0.02,264,"2019-20",1610612756,"PHX","1629607_2019-20","No Role Available"
1629610,"DaQuan Jeffries",0.06,228,-0.05,300,0.11,215,0.17,168,-0.07,309,0.24,127,-0.49,444,-0.27,397,-0.22,384,-0.21,314,0.13,200,-0.33,385,0.18,164,0.03,240,0.15,143,0.17,195,-0.1,302,0.27,165,"2019-20",1610612758,"SAC","1629610_2019-20","No Role Available"
1627395,"Julian Washburn",-0.07,266,-0.08,314,0.01,240,-0.24,376,0.01,244,-0.25,410,0.23,162,-0.03,282,0.26,111,0.11,215,-0.23,380,0.34,117,0.16,171,0.01,260,0.17,126,0.12,206,0.05,227,0.07,216,"2018-19",1610612763,"MEM","1627395_2018-19","No Role Available"
1627789,"Timothe Luwawu-Cabarrot",-0.36,370,-0.69,487,0.32,131,-0.41,424,-0.38,467,-0.04,257,-1.06,522,-0.81,528,-0.25,393,0.57,115,0.22,172,0.35,141,-0.33,438,-0.13,376,-0.2,417,-1.12,469,-1.08,508,-0.05,253,"2020-21",1610612751,"BKN","1627789_2020-21","Wing, Shooter"
1626176,"Rakeem Christmas",-0.6,379,-0.29,349,-0.31,331,-0.25,326,-0.11,313,-0.14,306,-0.31,351,-0.26,360,-0.05,262,0.22,176,-0.17,327,0.39,122,-0.06,274,0.15,138,-0.21,378,-0.47,333,-0.18,289,-0.29,310,"2016-17",1610612754,"IND","1626176_2016-17","No Role Available"
1626178,"Rondae Hollis-Jefferson",-0.82,416,0.47,89,-1.29,474,-0.31,352,0.35,79,-0.66,467,0.51,81,0.05,214,0.46,71,-0.94,438,-0.1,290,-0.84,447,0.08,190,0.27,98,-0.19,371,-0.45,327,0.65,83,-1.1,453,"2016-17",1610612751,"BKN","1626178_2016-17","No Role Available"
1626179,"Terry Rozier",0.27,145,0.68,53,-0.41,368,-0.2,302,0.41,62,-0.61,463,0.11,178,0.44,79,-0.33,384,-0.41,337,0.23,140,-0.65,414,0.27,117,-0.11,307,0.38,52,-0.23,280,0.8,59,-1.03,448,"2016-17",1610612738,"BOS","1626179_2016-17","No Role Available"
1629620,"Justin Robinson",0.37,148,0.33,126,0.04,237,0.08,209,0.01,264,0.08,203,0.11,200,0.16,162,-0.04,291,-0.08,282,0.05,248,-0.12,314,0.31,117,0.27,90,0.04,222,0.47,148,0.31,169,0.16,193,"2019-20",1610612764,"WAS","1629620_2019-20","No Role Available"
1626181,"Norman Powell",-0.11,247,-0.54,405,0.43,93,-0.13,270,-0.28,387,0.15,145,-0.62,430,-1.11,479,0.49,66,-0.02,254,0.07,209,-0.09,283,0.61,50,0.57,22,0.04,211,0.01,216,-0.33,342,0.34,128,"2016-17",1610612761,"TOR","1626181_2016-17","No Role Available"
1628578,"Amida Brimah",0.03,227,0.12,192,-0.08,289,0.09,202,0.06,221,0.03,218,-0.1,310,-0.04,283,-0.06,294,-0.04,272,-0.05,283,0.01,253,-0.13,355,0.01,273,-0.12,375,0.06,231,0.11,209,-0.04,252,"2020-21",1610612754,"IND","1628578_2020-21","No Role Available"
1629621,"Marial Shayok",-0.09,273,-0.04,295,-0.05,267,-0.05,280,0.01,270,-0.04,281,0.03,248,0.01,256,0.03,238,-0.18,307,-0.06,302,-0.12,308,-0.13,341,-0.06,327,-0.07,316,-0.23,318,-0.1,301,-0.14,305,"2019-20",1610612755,"PHI","1629621_2019-20","No Role Available"
1629622,"Max Strus",0.09,218,-0.04,296,0.13,204,0.17,170,0.07,209,0.1,195,-0.17,332,-0.22,378,0.04,228,0.26,186,0.01,265,0.24,164,0.02,251,-0.04,311,0.06,208,0.27,176,0.03,247,0.24,168,"2019-20",1610612741,"CHI","1629622_2019-20","No Role Available"
203077,"Michael Kidd-Gilchrist",0.17,196,0.39,108,-0.22,345,0.32,126,0.65,33,-0.32,438,0.01,257,-0.11,328,0.12,180,0.72,99,-0.02,282,0.75,59,0.23,143,0.06,215,0.17,130,0.72,116,0.89,52,-0.17,318,"2019-20",1610612766,"CHA","203077_2019-20","No Role Available"
1626184,"Chasson Randle",0.02,209,-0.12,292,0.15,153,-0.37,371,-0.32,408,-0.05,245,0.35,113,-0.04,265,0.39,87,-0.68,394,-0.69,450,0.01,239,0.06,201,0.18,126,-0.12,325,-0.06,235,-0.23,311,0.17,160,"2016-17",0,"League","1626184_2016-17","No Role Available"
1626185,"Jarell Martin",-1.11,446,0.55,75,-1.66,485,-0.39,380,0.44,57,-0.83,478,-0.63,433,-0.41,403,-0.22,346,-0.47,347,0.08,204,-0.55,403,0.3,111,0.28,94,0.01,232,-0.66,363,0.72,71,-1.38,470,"2016-17",1610612763,"MEM","1626185_2016-17","No Role Available"
1627783,"Pascal Siakam",1.91,20,0.47,100,1.44,15,0.48,99,-0.04,297,0.52,71,0.26,161,0.34,102,-0.08,305,0.01,253,-0.25,373,0.26,169,0.93,12,0.4,55,0.52,26,1.68,43,0.22,177,1.46,38,"2020-21",1610612761,"TOR","1627783_2020-21","Wing, Playmaker"
1627732,"Ben Simmons",-0.36,362,-0.7,479,0.33,122,0.28,126,-0.12,357,0.4,67,0.71,49,-0.27,418,0.98,16,1.57,25,0.37,109,1.2,20,-0.86,518,-0.08,324,-0.78,526,0.42,152,0.01,252,0.43,120,"2018-19",1610612755,"PHI","1627732_2018-19","No Role Available"
1626209,"Mario Hezonja",-1.21,485,-0.54,441,-0.67,443,-0.76,494,-0.18,371,-0.58,491,-0.34,396,-0.52,473,0.18,148,-1.18,485,-0.74,482,-0.44,409,0.11,197,0.1,184,0.01,251,-1.94,512,-0.95,483,-0.99,483,"2019-20",1610612757,"POR","1626209_2019-20","No Role Available"
201566,"Russell Westbrook",0.26,173,0.1,207,0.16,188,-0.24,373,-0.15,358,-0.09,325,0.43,100,0.24,125,0.2,141,-0.86,452,-0.7,480,-0.16,326,1,10,0.98,5,0.02,248,0.5,141,0.79,65,-0.29,351,"2019-20",1610612745,"HOU","201566_2019-20","No Role Available"
201952,"Jeff Teague",-1.6,508,-1.41,524,-0.19,332,-0.51,448,-0.38,448,-0.13,352,-0.41,421,-0.77,514,0.36,84,-1.9,519,-1.36,522,-0.54,431,-0.22,385,-0.56,501,0.34,70,-1.58,499,-1.8,522,0.22,177,"2019-20",1610612750,"MIN","201952_2019-20","No Role Available"
1629672,"Eric Paschall",-1.04,470,-0.44,421,-0.6,430,-1.56,529,-1,523,-0.56,489,0.27,141,-0.07,310,0.34,86,-0.81,444,-0.81,491,0.01,254,-0.21,382,-0.09,347,-0.12,354,-2.85,528,-2.06,525,-0.78,458,"2019-20",1610612744,"GSW","1629672_2019-20","No Role Available"
1629028,"Deandre Ayton",0.72,96,-0.44,444,1.16,30,0.81,51,0.01,264,0.8,34,0.16,198,0.42,83,-0.26,402,0.23,184,-0.52,463,0.75,58,-0.81,516,-0.67,523,-0.14,382,0.77,114,-0.46,426,1.23,48,"2020-21",1610612756,"PHX","1629028_2020-21","Big, Playmaker"
1627814,"Damion Lee",0.41,142,0.42,105,0.01,244,-0.03,260,-0.3,442,0.27,122,-0.16,326,-0.37,446,0.21,150,-1.39,506,0.01,265,-1.38,530,0.79,20,0.27,88,0.51,30,0.33,172,-0.3,379,0.64,109,"2020-21",1610612744,"GSW","1627814_2020-21","Wing, Shooter"
1626192,"Pat Connaughton",-0.6,380,-0.1,287,-0.5,390,0.14,171,0.01,235,0.13,152,-0.24,325,-0.08,284,-0.16,322,-0.15,290,-0.13,310,-0.02,256,-0.57,443,-0.29,413,-0.28,401,-0.44,325,-0.35,349,-0.09,233,"2016-17",1610612757,"POR","1626192_2016-17","No Role Available"
203078,"Bradley Beal",0.41,137,-1.16,516,1.57,13,-0.71,487,-1.28,528,0.57,36,0.58,70,-0.32,422,0.91,18,0.16,211,-0.58,464,0.74,61,0.31,118,-0.14,377,0.45,44,-0.76,422,-2.44,529,1.68,14,"2019-20",1610612764,"WAS","203078_2019-20","No Role Available"
1627823,"Juancho Hernangomez",0.33,163,-0.73,494,1.06,39,0.09,208,-0.14,365,0.23,137,1.01,26,-0.1,325,1.12,9,0.72,95,0.31,143,0.41,123,-0.23,407,-0.46,501,0.22,118,-0.17,298,-0.73,470,0.57,117,"2020-21",1610612750,"MIN","1627823_2020-21","Wing, Shooter"
1627846,"Abdel Nader",-0.45,386,0.1,198,-0.55,443,0.09,207,0.13,169,-0.05,264,-0.18,337,0.08,201,-0.26,397,-0.63,437,0.38,123,-1.01,511,-0.24,412,0.09,193,-0.32,466,-0.02,248,0.5,112,-0.53,406,"2020-21",1610612756,"PHX","1627846_2020-21","Wing, Shooter"
1626195,"Willy Hernangomez",-0.81,415,-0.96,465,0.15,154,-0.36,368,-0.14,331,-0.22,353,0.45,94,0.06,203,0.38,88,0.42,125,-0.46,413,0.88,34,-0.3,387,0.01,217,-0.31,418,-0.22,277,-0.28,321,0.05,191,"2016-17",1610612752,"NYK","1626195_2016-17","No Role Available"
1626199,"Darrun Hilliard",-0.15,266,0.24,143,-0.4,365,-0.28,335,0.14,152,-0.43,427,0.01,223,-0.27,364,0.27,111,0.15,196,0.26,132,-0.12,294,-0.1,296,-0.18,350,0.07,187,-0.13,257,0.33,138,-0.46,357,"2016-17",1610612765,"DET","1626199_2016-17","No Role Available"
1629626,"Bol Bol",-0.1,280,-0.21,363,0.1,217,-0.11,307,-0.27,407,0.15,162,0.01,260,-0.13,344,0.14,167,0.08,230,-0.02,280,0.1,214,-0.19,369,-0.04,310,-0.15,377,-0.13,282,-0.46,409,0.34,153,"2019-20",1610612743,"DEN","1629626_2019-20","No Role Available"
1629627,"Zion Williamson",0.81,85,-0.15,346,0.95,42,0.65,60,0.22,138,0.43,69,1.16,19,0.43,69,0.73,27,1.58,23,0.14,191,1.44,17,-0.73,496,-0.2,407,-0.53,507,0.94,86,0.37,155,0.57,109,"2019-20",1610612740,"NOP","1629627_2019-20","No Role Available"
1629628,"RJ Barrett",-1.62,509,-0.83,479,-0.79,469,-1.49,527,-0.84,518,-0.64,502,0.78,42,-0.29,406,1.07,11,-0.74,436,-1.77,528,1.03,35,0.28,128,0.24,101,0.03,232,-2.36,522,-1.68,520,-0.68,435,"2019-20",1610612752,"NYK","1629628_2019-20","No Role Available"
1629629,"Cam Reddish",-1.14,481,-0.95,496,-0.19,336,-0.59,466,-0.25,398,-0.35,448,0.36,119,-0.31,414,0.67,34,-0.69,426,-0.52,452,-0.18,333,-0.33,418,-0.19,402,-0.14,368,-1.33,480,-0.86,466,-0.46,396,"2019-20",1610612737,"ATL","1629629_2019-20","No Role Available"
1628021,"David Nwaba",0.96,73,0.4,112,0.56,94,-0.03,259,0.35,88,-0.37,443,0.39,124,-0.09,315,0.47,68,-0.67,441,-0.73,496,0.06,227,0.1,211,0.17,139,-0.08,336,-0.08,274,0.44,121,-0.53,407,"2020-21",1610612745,"HOU","1628021_2020-21","Wing, Shooter"
1629630,"Ja Morant",-0.17,304,-0.04,294,-0.13,303,0.96,29,0.74,19,0.22,135,0.18,174,-0.04,288,0.22,132,0.91,72,-0.09,318,1,38,-1.04,520,-0.28,433,-0.76,523,0.52,139,0.72,72,-0.2,329,"2019-20",1610612763,"MEM","1629630_2019-20","No Role Available"
1629631,"DeAndre Hunter",-0.72,422,-0.85,481,0.13,206,-0.78,496,-0.46,471,-0.31,433,0.22,158,-0.11,331,0.33,87,-0.04,270,-0.05,299,0.01,246,-0.03,286,-0.14,373,0.11,172,-1.03,455,-0.93,478,-0.11,299,"2019-20",1610612737,"ATL","1629631_2019-20","No Role Available"
1626204,"Larry Nance Jr.",0.12,180,0.37,110,-0.25,313,-0.62,438,-0.2,353,-0.42,426,-0.2,308,0.1,177,-0.31,375,0.01,248,0.07,210,-0.07,278,1.17,2,1.09,1,0.07,189,0.22,166,0.77,63,-0.55,376,"2016-17",1610612747,"LAL","1626204_2016-17","No Role Available"
1626245,"Cristiano Felicio",-0.5,357,-0.37,367,-0.13,254,-0.15,281,0.22,119,-0.37,405,-0.03,245,0.06,209,-0.09,280,1.22,32,0.64,42,0.58,70,-0.09,286,0.03,198,-0.12,329,-0.05,233,0.4,128,-0.45,352,"2016-17",1610612741,"CHI","1626245_2016-17","No Role Available"
1626257,"Salah Mejri",0.86,72,0.85,35,0.01,202,-0.12,265,0.26,104,-0.37,407,0.06,200,-0.14,319,0.2,139,1.21,34,0.58,56,0.64,63,0.33,105,0.5,33,-0.17,357,0.17,178,0.94,43,-0.77,414,"2016-17",1610612742,"DAL","1626257_2016-17","No Role Available"
1628035,"Alfonzo McKinnie",-0.08,268,0.05,237,-0.13,318,-0.02,258,0.19,132,-0.21,372,-0.19,340,-0.75,522,0.56,49,0.68,103,0.01,264,0.69,65,0.51,60,0.36,66,0.15,154,0.21,197,0.43,122,-0.23,331,"2020-21",1610612747,"LAL","1628035_2020-21","Wing, Shooter"
1628368,"DeAaron Fox",-0.09,276,-0.92,514,0.83,57,-0.77,499,-0.92,534,0.15,170,1.22,16,0.07,209,1.15,8,-1.05,484,-0.3,395,-0.75,486,0.39,88,-0.23,430,0.62,17,-1.02,456,-1.72,535,0.7,103,"2020-21",1610612758,"SAC","1628368_2020-21","Ball Handler, Primary Playmaker"
1629632,"Coby White",-1.3,495,-0.86,485,-0.43,408,-0.61,469,-0.72,511,0.11,179,-1.49,527,-1.18,529,-0.32,425,-0.21,321,-0.48,447,0.27,156,0.79,18,0.98,6,-0.19,391,-0.83,431,-0.49,412,-0.33,368,"2019-20",1610612741,"CHI","1629632_2019-20","No Role Available"
1629633,"Jarrett Culver",-0.79,435,-0.06,309,-0.72,457,-0.4,423,-0.07,308,-0.33,442,0.25,149,0.21,143,0.04,235,0.65,114,0.3,136,0.35,132,0.38,101,0.11,181,0.27,89,-0.03,258,0.28,180,-0.31,360,"2019-20",1610612750,"MIN","1629633_2019-20","No Role Available"
1626273,"Marcelo Huertas",-0.11,250,0.01,232,-0.12,250,-0.47,404,-0.34,412,-0.13,294,0.37,107,0.24,125,0.14,170,-0.61,377,-0.2,331,-0.41,371,0.38,89,0.26,105,0.12,160,-0.43,324,-0.25,315,-0.18,281,"2016-17",1610612747,"LAL","1626273_2016-17","No Role Available"
1626780,"Jonathan Gibson",-1.12,447,-0.37,369,-0.74,432,-0.77,456,-0.42,431,-0.35,402,0.11,179,-0.18,328,0.29,107,-0.44,344,-0.16,319,-0.28,338,-0.25,357,-0.08,286,-0.17,356,-1.24,440,-0.74,417,-0.51,370,"2016-17",1610612742,"DAL","1626780_2016-17","No Role Available"
1627098,"Malcolm Delaney",0.94,67,0.94,25,0.01,210,0.01,221,0.21,125,-0.21,347,0.69,53,0.47,69,0.22,131,-0.11,275,0.15,171,-0.25,328,0.95,10,0.74,8,0.21,105,0.82,92,1.11,28,-0.29,311,"2016-17",1610612737,"ATL","1627098_2016-17","No Role Available"
1627362,"Briante Weber",-0.23,294,-0.25,338,0.01,195,-0.71,451,-0.55,457,-0.16,321,0.4,104,0.3,108,0.09,193,-0.14,285,-0.16,320,0.03,231,0.47,69,0.24,109,0.23,100,-0.71,374,-0.61,400,-0.1,242,"2016-17",0,"League","1627362_2016-17","No Role Available"
1627735,"Wade Baldwin IV",-1.85,476,-0.28,348,-1.56,483,-0.8,461,-0.2,355,-0.61,461,-0.68,441,-0.39,400,-0.29,372,-0.44,345,0.09,199,-0.54,402,-0.4,408,-0.21,368,-0.19,367,-1.96,469,-0.49,383,-1.47,473,"2016-17",1610612763,"MEM","1627735_2016-17","No Role Available"
1628995,"Kevin Knox II",-2.24,527,-1.03,505,-1.21,510,-0.8,498,-0.09,323,-0.7,508,-1.13,518,-0.74,513,-0.39,450,-0.71,429,0.18,179,-0.88,490,-0.14,350,-0.28,434,0.13,154,-1.75,504,-0.35,377,-1.4,511,"2019-20",1610612752,"NYK","1628995_2019-20","No Role Available"
1629021,"Moritz Wagner",-0.84,442,-0.02,284,-0.82,475,-0.59,464,-0.58,497,0.01,255,0.08,219,0.09,194,0.01,271,-0.47,389,0.36,121,-0.82,485,0.26,130,0.65,17,-0.39,481,-0.7,413,-0.35,379,-0.34,371,"2019-20",1610612764,"WAS","1629021_2019-20","No Role Available"
1629635,"Sekou Doumbouya",-2.19,525,-1.37,522,-0.82,474,-0.84,500,-0.48,476,-0.36,455,-0.16,326,0.19,149,-0.35,437,-1.32,495,-1.25,516,-0.07,281,-0.37,433,-0.26,429,-0.12,350,-1.77,507,-1.05,487,-0.72,442,"2019-20",1610612765,"DET","1629635_2019-20","No Role Available"
1629636,"Darius Garland",-1.81,516,-0.76,474,-1.05,498,-0.27,380,-0.37,443,0.1,197,-0.29,375,0.73,32,-1.02,523,0.39,157,-0.3,400,0.69,68,-0.8,503,-0.44,477,-0.36,470,-1.35,486,-0.69,448,-0.66,431,"2019-20",1610612739,"CLE","1629636_2019-20","No Role Available"
1629637,"Jaxson Hayes",-0.19,319,0.14,187,-0.34,380,0.13,184,-0.08,313,0.21,141,0.05,239,-0.66,504,0.71,30,0.11,221,0.03,253,0.07,227,0.06,220,0.36,64,-0.3,445,-0.25,323,-0.05,289,-0.19,326,"2019-20",1610612740,"NOP","1629637_2019-20","No Role Available"
1629139,"Yuta Watanabe",0.32,164,0.7,58,-0.38,397,-0.56,458,-0.33,451,-0.23,387,0.01,264,0.17,158,-0.16,353,1.16,49,0.32,137,0.83,48,0.06,233,0.54,30,-0.48,498,-0.23,313,0.21,181,-0.44,388,"2020-21",1610612761,"TOR","1629139_2020-21","Wing, Shooter"
1627832,"Fred VanVleet",1.85,22,0.98,29,0.87,53,0.38,129,0.43,61,-0.05,268,-0.45,424,-0.7,516,0.25,134,-0.16,317,0.1,208,-0.27,370,1.59,2,0.78,7,0.81,4,1.62,47,0.8,63,0.81,84,"2020-21",1610612761,"TOR","1627832_2020-21","Ball Handler, Secondary Playmaker"
1628388,"T.J. Leaf",0.14,207,0.09,208,0.06,218,0.14,192,0.19,131,-0.05,272,-0.32,387,-0.14,343,-0.18,361,0.01,262,0.06,234,-0.07,286,-0.09,329,-0.14,386,0.05,226,-0.04,255,0.1,213,-0.13,291,"2020-21",1610612757,"POR","1628388_2020-21","No Role Available"
1628389,"Bam Adebayo",0.36,157,0.06,229,0.3,139,0.21,172,-0.23,418,0.44,86,0.7,61,0.75,32,-0.06,291,-0.73,451,0.52,92,-1.25,526,-0.22,396,0.03,233,-0.25,440,0.49,151,0.12,204,0.37,159,"2020-21",1610612748,"MIA","1628389_2020-21","Big, Playmaker"
1629638,"Nickeil Alexander-Walker",-0.42,379,-0.74,469,0.32,151,-0.17,330,-0.41,458,0.24,124,-0.27,364,-0.59,490,0.32,97,-0.91,461,-0.81,493,-0.1,294,0.28,126,0.02,255,0.26,92,-0.54,382,-1.06,488,0.52,113,"2019-20",1610612740,"NOP","1629638_2019-20","No Role Available"
1629640,"Keldon Johnson",0.39,144,0.26,150,0.14,199,0.77,44,0.32,101,0.45,61,0.12,194,-0.2,375,0.33,94,1.44,31,1.16,9,0.27,155,-0.1,330,0.01,273,-0.1,342,1.41,47,0.65,89,0.76,78,"2019-20",1610612759,"SAS","1629640_2019-20","No Role Available"
1627736,"Malik Beasley",0.38,123,0.55,73,-0.17,272,0.52,79,0.31,86,0.21,118,-0.25,330,-0.07,280,-0.19,332,0.21,178,0.21,147,0.01,243,-0.11,304,0.04,191,-0.15,349,0.84,91,0.67,76,0.17,159,"2016-17",1610612743,"DEN","1627736_2016-17","No Role Available"
1627737,"Marquese Chriss",-1.15,453,-0.56,412,-0.59,403,-1.71,486,-1.31,486,-0.4,417,-0.37,371,-0.36,396,0.01,245,-0.88,429,-0.28,361,-0.59,404,-0.09,285,0.49,37,-0.58,468,-2.83,482,-1.65,481,-1.18,456,"2016-17",1610612756,"PHX","1627737_2016-17","No Role Available"
1629641,"Romeo Langford",0.45,134,0.37,117,0.08,228,0.21,157,0.25,125,-0.04,284,-0.5,445,-0.5,470,0.01,250,0.83,81,0.63,61,0.2,177,0.45,78,0.06,212,0.39,60,0.84,98,0.43,141,0.41,137,"2019-20",1610612738,"BOS","1629641_2019-20","No Role Available"
1629642,"Nassir Little",-0.02,255,-0.22,370,0.2,173,-0.18,338,-0.15,360,-0.03,268,-0.6,463,-0.28,402,-0.32,427,-0.72,431,-0.97,505,0.24,165,0.36,105,-0.02,292,0.38,63,-0.44,359,-0.68,447,0.24,170,"2019-20",1610612757,"POR","1629642_2019-20","No Role Available"
1627740,"Henry Ellenson",-0.02,220,0.13,175,-0.15,264,0.01,229,0.04,210,-0.05,247,-0.39,380,-0.04,268,-0.35,389,-0.09,273,-0.27,358,0.18,161,0.1,181,0.06,179,0.04,209,-0.09,245,0.05,212,-0.14,254,"2016-17",1610612765,"DET","1627740_2016-17","No Role Available"
1629644,"KZ Okpala",-0.21,324,-0.09,326,-0.12,300,-0.17,332,-0.15,357,-0.02,264,0.11,198,0.13,174,-0.02,277,-0.38,364,-0.21,365,-0.17,332,-0.02,282,0.06,208,-0.09,333,-0.32,341,-0.18,326,-0.14,306,"2019-20",1610612748,"MIA","1629644_2019-20","No Role Available"
1627741,"Buddy Hield",-2.32,486,-0.97,466,-1.35,478,-0.45,395,-0.35,414,-0.1,276,-0.58,423,0.75,29,-1.33,485,-0.91,436,-0.17,321,-0.75,437,-0.36,400,-0.33,429,-0.03,266,-1.99,470,-0.74,420,-1.25,460,"2016-17",0,"League","1627741_2016-17","No Role Available"
1629645,"Kevin Porter Jr.",-1.55,507,-0.57,445,-0.98,493,-1.27,522,-0.65,507,-0.62,497,-0.47,437,0.06,210,-0.53,473,-2.31,526,-1.53,527,-0.78,478,-0.15,353,0.31,74,-0.46,499,-2.84,527,-1.1,489,-1.74,525,"2019-20",1610612739,"CLE","1629645_2019-20","No Role Available"
1627744,"Brice Johnson",0.1,188,0.09,192,0.01,205,0.04,201,0.01,237,0.03,184,0.07,196,0.08,192,0.01,243,0.2,182,0.1,195,0.1,201,0.02,228,0.05,182,-0.03,270,0.16,181,0.09,198,0.07,186,"2016-17",1610612746,"LAC","1627744_2016-17","No Role Available"
1627745,"Damian Jones",-0.29,303,0.01,236,-0.29,325,-0.3,339,-0.17,342,-0.12,289,0.11,180,0.04,222,0.07,205,-0.04,259,-0.17,323,0.13,190,0.11,177,0.23,112,-0.12,333,-0.27,290,0.01,226,-0.27,304,"2016-17",1610612744,"GSW","1627745_2016-17","No Role Available"
1627746,"Skal Labissiere",0.05,199,0.01,230,0.04,189,-0.04,245,0.06,197,-0.1,271,0.9,35,0.49,65,0.41,81,0.17,187,0.04,224,0.13,189,0.01,232,-0.07,284,0.09,181,-0.13,256,0.02,221,-0.15,257,"2016-17",1610612758,"SAC","1627746_2016-17","No Role Available"
1627747,"Caris LeVert",0.3,140,-0.14,300,0.44,92,0.29,133,0.17,137,0.11,158,-0.45,392,-0.71,460,0.26,116,0.36,135,0.03,229,0.32,137,0.24,131,-0.2,365,0.44,37,0.32,151,-0.2,298,0.53,101,"2016-17",1610612751,"BKN","1627747_2016-17","No Role Available"
1627749,"Dejounte Murray",0.13,178,0.13,171,0.01,208,0.21,145,0.23,111,0.01,218,-0.14,281,0.01,241,-0.14,310,0.12,209,0.09,200,0.03,228,-0.17,324,-0.02,240,-0.15,346,0.19,175,0.42,123,-0.23,293,"2016-17",1610612759,"SAS","1627749_2016-17","No Role Available"
1629647,"Darius Bazley",-1.4,503,0.34,123,-1.74,528,0.2,159,0.96,5,-0.77,514,-0.67,477,0.11,184,-0.78,508,-0.67,421,-0.52,453,-0.15,320,-0.57,480,0.04,233,-0.61,517,-1.11,462,1.22,27,-2.32,529,"2019-20",1610612760,"OKC","1629647_2019-20","No Role Available"
1629649,"Ignas Brazdeikis",0.01,251,-0.14,344,0.13,201,-0.15,320,-0.19,375,0.04,225,0.01,258,-0.03,281,0.04,232,-0.07,281,0.01,272,-0.07,280,0.09,202,0.01,281,0.09,183,-0.18,296,-0.23,335,0.04,241,"2019-20",1610612752,"NYK","1629649_2019-20","No Role Available"
1629650,"Moses Brown",-0.1,281,-0.09,327,0.01,256,-0.24,367,-0.15,359,-0.09,320,0.04,240,-0.11,329,0.15,161,-0.22,323,-0.2,363,-0.02,262,-0.09,322,-0.14,378,0.05,214,-0.51,373,-0.43,400,-0.09,292,"2019-20",1610612757,"POR","1629650_2019-20","No Role Available"
1629651,"Nicolas Claxton",-0.95,461,-0.26,384,-0.69,448,-0.37,413,-0.11,329,-0.26,417,-0.23,353,0.06,213,-0.29,415,-2.09,524,-1.29,519,-0.79,481,-0.14,344,-0.02,294,-0.12,353,-1.15,465,-0.39,387,-0.76,452,"2019-20",1610612751,"BKN","1629651_2019-20","No Role Available"
1629652,"Luguentz Dort",-0.4,374,-0.27,388,-0.13,304,0.15,178,0.12,181,0.02,237,0.34,123,0.26,121,0.08,207,-1.03,473,-0.55,459,-0.48,418,0.55,59,0.02,257,0.53,26,0.36,161,0.06,236,0.31,156,"2019-20",1610612760,"OKC","1629652_2019-20","No Role Available"
1629655,"Daniel Gafford",-0.62,407,-0.04,293,-0.58,429,0.01,262,0.12,184,-0.12,346,-0.67,475,-0.67,506,0.01,252,-0.5,394,-0.62,469,0.12,207,0.35,108,0.53,31,-0.17,384,-0.23,316,0.51,112,-0.74,446,"2019-20",1610612741,"CHI","1629655_2019-20","No Role Available"
1629657,"Kyle Guy",-0.11,285,-0.11,335,0.01,252,-0.09,294,-0.05,297,-0.04,276,-0.16,327,-0.1,324,-0.06,300,-0.13,294,-0.05,297,-0.08,285,0.01,262,-0.04,315,0.05,213,-0.22,314,-0.18,325,-0.04,270,"2019-20",1610612758,"SAC","1629657_2019-20","No Role Available"
1629658,"Jaylen Hoard",0.24,177,-0.11,334,0.35,142,-0.08,291,0.01,271,-0.07,306,0.39,109,-0.27,399,0.67,36,0.61,118,-0.21,369,0.83,53,-0.1,332,-0.03,307,-0.07,317,0.16,198,-0.04,282,0.19,183,"2019-20",1610612757,"POR","1629658_2019-20","No Role Available"
1627750,"Jamal Murray",0.04,201,-0.15,304,0.19,145,0.94,25,0.25,106,0.7,32,-0.45,391,-0.22,347,-0.23,348,0.16,191,0.41,89,-0.25,326,-0.64,450,-0.4,442,-0.24,390,0.71,106,0.03,219,0.68,78,"2016-17",1610612743,"DEN","1627750_2016-17","No Role Available"
1627751,"Jakob Poeltl",0.2,160,0.67,57,-0.47,383,-0.47,405,0.08,184,-0.55,453,-0.82,452,-0.57,431,-0.25,356,2.1,8,0.81,25,1.3,19,0.41,80,0.59,20,-0.18,361,-0.17,268,0.75,69,-0.92,437,"2016-17",1610612761,"TOR","1627751_2016-17","No Role Available"
1627752,"Taurean Prince",0.14,176,1.09,19,-0.95,454,-0.19,293,0.73,10,-0.92,482,0.74,50,0.49,66,0.25,121,-0.55,369,-0.14,311,-0.41,372,-0.03,252,0.54,27,-0.57,467,-0.06,234,1.67,10,-1.73,482,"2016-17",1610612737,"ATL","1627752_2016-17","No Role Available"
1627754,"Diamond Stone",-0.45,345,-0.09,280,-0.36,350,-0.17,286,-0.03,268,-0.14,305,-0.3,350,-0.13,313,-0.17,325,-0.07,268,0.1,194,-0.17,306,-0.15,319,-0.07,277,-0.09,305,-0.41,318,-0.04,248,-0.37,331,"2016-17",1610612746,"LAC","1627754_2016-17","No Role Available"
1627757,"Stephen Zimmerman",-0.47,351,-0.36,364,-0.11,245,-0.2,303,-0.09,302,-0.12,282,-0.53,414,-0.21,341,-0.32,383,0.02,237,-0.23,346,0.25,149,0.14,161,0.01,220,0.13,152,-0.35,302,-0.19,296,-0.16,269,"2016-17",1610612753,"ORL","1627757_2016-17","No Role Available"
1627762,"Joel Bolomboy",0.12,184,0.22,149,-0.1,242,0.16,163,0.14,153,0.02,193,0.08,193,0.01,248,0.09,194,-0.09,272,0.05,221,-0.14,298,0.01,244,-0.02,242,0.02,230,0.2,174,0.23,162,-0.04,220,"2016-17",1610612762,"UTA","1627762_2016-17","No Role Available"
1627763,"Malcolm Brogdon",0.03,206,-0.55,410,0.58,84,0.55,74,-0.1,306,0.65,38,0.01,221,-0.34,387,0.35,97,-0.54,368,-0.17,326,-0.36,362,0.37,92,-0.02,241,0.39,49,1.23,63,-0.03,240,1.26,45,"2016-17",1610612749,"MIL","1627763_2016-17","No Role Available"
1627767,"Cheick Diallo",-0.36,325,-0.33,359,-0.04,221,-0.47,403,-0.4,426,-0.07,260,0.06,201,0.27,114,-0.21,343,-0.7,399,-0.72,455,0.02,233,0.54,59,0.42,51,0.12,163,-0.46,328,-0.29,328,-0.17,271,"2016-17",1610612740,"NOP","1627767_2016-17","No Role Available"
1627770,"Kay Felder",-0.52,361,0.2,156,-0.73,429,-0.24,322,-0.14,330,-0.1,277,-0.32,359,-0.11,306,-0.21,342,-1.16,450,-0.56,430,-0.6,407,-0.25,360,0.06,173,-0.31,417,-1.05,420,-0.26,318,-0.8,422,"2016-17",1610612739,"CLE","1627770_2016-17","No Role Available"
1627771,"Michael Gbinije",-0.18,277,-0.04,259,-0.14,262,-0.05,247,0.01,240,-0.05,244,-0.18,299,-0.1,298,-0.07,269,0.16,190,0.03,232,0.13,186,0.14,159,-0.03,247,0.17,130,-0.04,228,-0.04,246,0.01,205,"2016-17",1610612765,"DET","1627771_2016-17","No Role Available"
1629659,"Talen Horton-Tucker",0.01,243,0.09,214,-0.09,287,-0.21,353,-0.13,344,-0.08,315,0.03,246,0.06,209,-0.04,284,0.23,192,-0.15,343,0.38,122,-0.13,342,0.08,193,-0.22,409,-0.41,356,-0.16,319,-0.26,340,"2019-20",1610612747,"LAL","1629659_2019-20","No Role Available"
1629660,"Ty Jerome",-0.89,451,-0.06,302,-0.83,478,-1.25,520,-0.6,500,-0.65,503,-0.07,288,-0.16,357,0.1,198,0.53,134,0.09,227,0.44,107,-0.19,368,0.24,104,-0.43,492,-1.64,501,-0.59,432,-1.05,488,"2019-20",1610612756,"PHX","1629660_2019-20","No Role Available"
1629663,"Louis King",0.4,140,0.27,145,0.13,203,0.23,152,0.17,159,0.06,210,0.06,234,-0.22,377,0.27,113,-0.14,297,0.02,263,-0.16,325,0.18,167,0.01,263,0.17,133,0.32,168,0.2,193,0.12,211,"2019-20",1610612765,"DET","1629663_2019-20","No Role Available"
1628988,"Aaron Holiday",0.15,204,0.1,203,0.06,219,-0.16,329,-0.36,462,0.2,145,0.15,201,0.05,219,0.1,207,-0.85,465,-0.83,507,-0.02,274,0.5,63,0.64,14,-0.13,379,-0.08,267,-0.29,370,0.21,178,"2020-21",1610612754,"IND","1628988_2020-21","Wing, Shooter"
1627773,"AJ Hammons",-0.39,330,-0.14,303,-0.25,310,0.1,177,0.17,136,-0.07,262,-0.02,239,-0.09,293,0.07,203,0.18,184,0.02,233,0.15,170,-0.17,326,-0.15,335,-0.03,268,-0.09,242,0.07,202,-0.16,264,"2016-17",1610612742,"DAL","1627773_2016-17","No Role Available"
1627774,"Jake Layman",-0.33,318,0.35,117,-0.68,419,0.15,166,0.32,83,-0.17,325,0.01,237,-0.22,346,0.2,138,-0.02,257,0.03,231,-0.05,270,-0.1,295,-0.03,255,-0.07,295,0.03,210,0.47,116,-0.44,348,"2016-17",1610612757,"POR","1627774_2016-17","No Role Available"
1629665,"Jalen Lecque",-0.36,367,0.01,269,-0.35,387,-0.05,279,0.03,238,-0.08,317,-0.12,308,-0.03,277,-0.09,321,-0.42,375,-0.08,314,-0.34,386,0.03,242,0.03,241,0.01,262,-0.11,277,0.09,231,-0.2,328,"2019-20",1610612756,"PHX","1629665_2019-20","No Role Available"
1629667,"Jalen McDaniels",-0.47,389,-0.29,391,-0.18,328,0.18,163,0.09,200,0.1,196,-0.27,368,-0.18,368,-0.09,324,-0.2,313,-0.43,439,0.22,171,-0.08,316,0.1,188,-0.17,385,0.2,189,0.12,216,0.09,227,"2019-20",1610612766,"CHA","1629667_2019-20","No Role Available"
1629668,"Zach Norvell Jr.",-0.28,345,-0.19,357,-0.09,290,-0.16,325,-0.26,404,0.1,190,-0.39,414,-0.32,421,-0.07,305,-0.56,404,-0.29,394,-0.27,365,-0.02,283,0.04,230,-0.06,314,-0.5,369,-0.49,413,0.01,256,"2019-20",1610612747,"LAL","1629668_2019-20","No Role Available"
1627775,"Patrick McCaw",-1.85,477,-0.47,393,-1.38,479,-0.8,459,-0.38,423,-0.42,424,0.04,214,0.35,97,-0.31,380,-0.11,276,-0.12,298,0.01,240,-0.65,452,-0.13,320,-0.53,461,-2.17,477,-0.55,393,-1.62,479,"2016-17",1610612744,"GSW","1627775_2016-17","No Role Available"
1627777,"Georges Niang",0.07,193,0.01,241,0.08,171,-0.18,289,-0.07,290,-0.11,280,0.16,164,0.02,229,0.14,165,0.06,227,-0.13,303,0.19,158,0.25,127,0.07,169,0.18,120,-0.03,225,-0.05,251,0.02,198,"2016-17",1610612754,"IND","1627777_2016-17","No Role Available"
1627778,"Chinanu Onuaku",-0.21,292,-0.29,351,0.09,166,-0.32,353,-0.21,356,-0.11,279,-0.24,327,-0.21,343,-0.03,256,-0.14,288,-0.21,334,0.06,217,-0.29,386,-0.16,340,-0.14,342,-0.77,381,-0.54,389,-0.22,292,"2016-17",1610612745,"HOU","1627778_2016-17","No Role Available"
1627780,"Gary Payton II",-0.71,395,-0.11,289,-0.6,404,-0.33,359,-0.15,336,-0.17,329,-0.17,290,-0.04,264,-0.13,304,-0.16,294,-0.06,274,-0.1,287,-0.46,422,-0.16,342,-0.3,408,-0.98,406,-0.34,344,-0.64,398,"2016-17",1610612749,"MIL","1627780_2016-17","No Role Available"
1627781,"Malachi Richardson",-0.11,246,0.12,180,-0.22,301,0.05,193,0.13,160,-0.07,261,0.01,230,0.01,236,0.01,246,0.34,139,0.48,75,-0.14,299,-0.26,372,-0.19,358,-0.07,298,0.13,187,0.31,147,-0.17,276,"2016-17",1610612758,"SAC","1627781_2016-17","No Role Available"
1627782,"Wayne Selden",-0.44,341,-0.02,249,-0.42,371,-0.2,299,-0.06,285,-0.13,300,-0.09,265,0.1,178,-0.19,335,-0.67,391,0.01,239,-0.67,420,-0.25,361,-0.25,392,0.01,247,-0.75,380,-0.19,293,-0.56,381,"2016-17",0,"League","1627782_2016-17","No Role Available"
1629648,"Jordan Bone",-0.04,260,0.06,234,-0.1,295,-0.17,331,-0.11,330,-0.06,294,0.17,182,0.12,179,0.05,227,-0.18,309,-0.3,401,0.12,205,0.24,135,0.2,125,0.04,226,0.08,224,0.01,261,0.07,232,"2019-20",1610612765,"DET","1629648_2019-20","No Role Available"
1627853,"Ryan Arcidiacono",-0.47,397,-0.21,360,-0.26,361,-0.2,351,0.09,198,-0.29,415,0.33,139,0.41,86,-0.08,311,-0.17,322,-0.29,388,0.11,211,0.1,210,0.02,248,0.08,196,-0.17,301,0.28,166,-0.45,390,"2020-21",1610612741,"CHI","1627853_2020-21","Wing, Shooter"
1627783,"Pascal Siakam",-0.49,355,0.35,118,-0.84,447,-0.61,437,-0.53,456,-0.08,264,-0.63,432,0.14,158,-0.77,464,0.72,77,0.06,214,0.66,60,-0.04,262,0.42,53,-0.45,450,-1.14,431,-0.35,351,-0.78,420,"2016-17",1610612761,"TOR","1627783_2016-17","No Role Available"
1629760,"Matt Mooney",0.21,185,0.12,199,0.09,224,-0.08,289,0.03,233,-0.11,339,0.08,215,0.09,197,0.01,261,0.01,260,-0.08,310,0.07,230,0.2,152,0.07,201,0.14,151,0.06,229,0.14,206,-0.07,283,"2019-20",1610612739,"CLE","1629760_2019-20","No Role Available"
1629669,"Jaylen Nowell",-0.04,261,0.09,218,-0.13,307,0.01,258,0.21,146,-0.21,389,-0.2,343,-0.31,416,0.11,185,-0.4,371,0.36,120,-0.75,469,0.45,79,0.18,143,0.27,91,0.21,187,0.44,133,-0.23,334,"2019-20",1610612750,"MIN","1629669_2019-20","No Role Available"
1627787,"Kyle Wiltjer",-0.64,388,-0.23,334,-0.41,369,-0.18,291,-0.09,303,-0.09,270,-0.23,322,0.04,225,-0.27,364,0.11,211,0.12,182,0.01,250,-0.43,414,-0.09,298,-0.33,424,-0.61,355,-0.19,291,-0.43,346,"2016-17",1610612745,"HOU","1627787_2016-17","No Role Available"
1628975,"Jevon Carter",0.01,239,0.21,150,-0.22,359,-0.44,437,0.01,245,-0.46,484,-0.78,485,-0.72,502,-0.06,301,1.9,16,1.51,2,0.38,111,-0.44,460,-0.16,374,-0.27,451,-0.95,452,-0.12,306,-0.83,475,"2018-19",1610612763,"MEM","1628975_2018-19","No Role Available"
1629671,"Miye Oni",-0.38,369,-0.24,381,-0.13,308,-0.17,334,-0.23,394,0.05,216,-0.16,324,-0.13,343,-0.02,280,-0.25,329,0.01,271,-0.25,353,0.11,194,0.04,234,0.08,194,-0.33,342,-0.38,386,0.05,236,"2019-20",1610612762,"UTA","1629671_2019-20","No Role Available"
1627789,"Timothe Luwawu-Cabarrot",0.62,90,0.64,62,-0.02,216,0.59,64,0.59,26,0.01,202,-0.55,419,-0.59,436,0.04,221,-0.95,441,-0.47,414,-0.48,388,0.26,123,0.38,61,-0.12,335,0.75,100,1.14,26,-0.39,340,"2016-17",1610612755,"PHI","1627789_2016-17","No Role Available"
1627812,"Yogi Ferrell",-0.94,427,-0.59,416,-0.35,347,-0.8,460,-0.47,444,-0.33,398,-0.32,356,-0.03,261,-0.29,371,-0.48,351,0.26,131,-0.74,434,0.31,109,0.01,236,0.32,70,-1.07,426,-0.58,395,-0.49,367,"2016-17",0,"League","1627812_2016-17","No Role Available"
1629675,"Naz Reid",-0.67,416,-0.29,392,-0.38,394,0.25,148,0.1,191,0.15,164,-0.49,443,-0.07,315,-0.42,454,0.35,163,1.11,14,-0.76,472,0.34,111,-0.18,394,0.52,30,0.87,95,0.5,114,0.37,144,"2019-20",1610612750,"MIN","1629675_2019-20","No Role Available"
1629676,"Isaiah Roby",-0.03,256,0.07,229,-0.09,291,0.01,268,0.01,269,0.01,254,0.11,202,0.07,204,0.04,229,-0.08,284,-0.09,319,0.01,249,0.03,240,0.06,216,-0.03,285,0.01,250,0.02,252,-0.03,268,"2019-20",1610612760,"OKC","1629676_2019-20","No Role Available"
1629719,"Devontae Cacok",0.02,236,0.01,267,0.02,242,0.02,254,0.01,275,0.04,229,0.08,221,0.1,190,-0.02,278,0.04,245,0.02,262,0.01,247,0.02,252,0.01,277,0.02,247,0.07,226,0.01,267,0.08,228,"2019-20",1610612747,"LAL","1629719_2019-20","No Role Available"
1627815,"Sheldon Mac",-0.51,358,0.19,157,-0.71,426,-0.39,377,0.05,199,-0.44,430,-0.37,374,-0.02,254,-0.36,391,-0.25,311,0.27,130,-0.52,399,0.01,236,0.01,222,0.01,243,-0.61,354,0.21,168,-0.83,426,"2016-17",1610612764,"WAS","1627815_2016-17","No Role Available"
1627816,"Alex Poythress",-0.2,282,-0.39,372,0.19,143,-0.22,307,-0.16,339,-0.06,251,-0.14,283,-0.28,367,0.14,169,0.09,220,-0.33,375,0.42,115,0.13,164,0.01,229,0.13,150,-0.36,303,-0.51,386,0.15,165,"2016-17",1610612755,"PHI","1627816_2016-17","No Role Available"
1628420,"Monte Morris",1.25,50,0.52,87,0.74,72,0.2,158,-0.07,312,0.28,116,0.32,130,0.27,116,0.04,230,-0.82,446,-0.68,476,-0.14,318,0.73,31,0.25,96,0.48,38,0.72,115,0.08,232,0.64,97,"2019-20",1610612743,"DEN","1628420_2019-20","No Role Available"
1627854,"Bryn Forbes",-0.27,336,0.05,236,-0.32,384,0.43,112,-0.06,322,0.49,75,-0.65,472,-0.04,277,-0.61,501,-0.87,466,-0.75,499,-0.12,314,0.21,150,0.16,144,0.05,227,0.1,226,-0.5,433,0.6,114,"2020-21",1610612749,"MIL","1627854_2020-21","Wing, Shooter"
1629678,"Admiral Schofield",-0.17,307,-0.08,321,-0.09,286,-0.25,376,-0.15,354,-0.1,333,-0.88,500,-0.71,509,-0.18,361,-1.14,480,-0.7,478,-0.44,410,0.09,203,0.01,262,0.08,197,-0.68,411,-0.42,396,-0.26,342,"2019-20",1610612764,"WAS","1629678_2019-20","No Role Available"
203546,"Ian Clark",-0.27,343,-0.19,359,-0.08,297,-0.05,288,0.21,132,-0.26,415,-0.71,474,-0.4,449,-0.32,423,0.3,169,0.2,174,0.1,202,-0.38,436,-0.32,452,-0.06,320,-0.52,378,-0.12,303,-0.41,386,"2018-19",1610612740,"NOP","203546_2018-19","No Role Available"
1627817,"Tim Quarterman",-0.29,304,0.05,213,-0.34,344,0.11,176,0.16,143,-0.06,252,-0.18,300,-0.17,325,0.01,247,-0.43,343,-0.18,328,-0.25,327,-0.08,281,0.02,210,-0.1,311,-0.1,248,0.21,169,-0.31,314,"2016-17",1610612757,"POR","1627817_2016-17","No Role Available"
1627819,"Isaiah Taylor",-0.18,278,-0.23,332,0.04,186,-0.16,284,-0.13,327,-0.03,223,0.03,216,0.1,181,-0.07,266,-0.15,292,0.02,234,-0.18,313,-0.07,277,-0.1,305,0.03,217,-0.37,305,-0.31,336,-0.06,225,"2016-17",1610612745,"HOU","1627819_2016-17","No Role Available"
1627823,"Juancho Hernangomez",-1.08,441,-0.69,433,-0.39,362,0.04,204,-0.37,421,0.41,66,0.66,58,0.88,19,-0.23,347,0.71,78,-0.13,308,0.84,41,-0.64,449,-0.28,405,-0.36,434,-0.23,281,-0.65,407,0.43,118,"2016-17",1610612743,"DEN","1627823_2016-17","No Role Available"
1627826,"Ivica Zubac",-0.98,431,-0.73,437,-0.25,315,-0.47,402,-0.26,380,-0.2,345,-0.06,257,0.4,85,-0.47,414,-1.39,465,-0.48,417,-0.91,454,0.01,240,-0.26,402,0.26,86,-0.88,396,-0.55,392,-0.33,318,"2016-17",1610612747,"LAL","1627826_2016-17","No Role Available"
1627827,"Dorian Finney-Smith",0.1,187,0.16,163,-0.05,228,-0.44,392,-0.28,388,-0.16,317,-0.51,409,0.2,141,-0.71,455,0.34,140,0.28,123,0.06,218,0.75,32,0.33,75,0.42,44,0.18,176,0.22,167,-0.04,222,"2016-17",1610612742,"DAL","1627827_2016-17","No Role Available"
1627832,"Fred VanVleet",-0.09,238,0.37,111,-0.45,378,0.38,107,0.57,29,-0.19,340,-0.83,455,-0.49,414,-0.33,385,0.52,110,0.53,63,0.01,245,-0.04,260,0.04,187,-0.08,303,0.47,135,0.93,44,-0.45,353,"2016-17",1610612761,"TOR","1627832_2016-17","No Role Available"
1627834,"Georgios Papagiannis",-0.44,344,-0.27,342,-0.17,279,0.63,58,0.21,124,0.42,64,-0.72,445,-0.33,384,-0.39,398,0.46,120,0.47,77,-0.02,255,-1.25,483,-0.63,476,-0.61,472,-0.11,254,-0.17,284,0.06,190,"2016-17",1610612758,"SAC","1627834_2016-17","No Role Available"
1627852,"Nicolas Brussino",-0.56,369,-0.23,335,-0.33,342,-0.91,468,-0.52,455,-0.39,415,0.05,207,-0.32,379,0.37,92,1.01,46,0.15,169,0.86,37,-0.36,399,-0.17,347,-0.19,370,-1.71,460,-1.16,466,-0.55,377,"2016-17",1610612742,"DAL","1627852_2016-17","No Role Available"
201577,"Robin Lopez",-0.63,428,-0.11,331,-0.52,438,0.28,127,0.25,116,0.03,215,1.01,26,1.34,2,-0.34,430,-0.27,346,0.23,159,-0.5,428,-0.9,521,-0.89,528,0.01,287,-0.27,329,0.05,224,-0.32,364,"2018-19",1610612741,"CHI","201577_2018-19","No Role Available"
1629640,"Keldon Johnson",-0.03,248,-0.26,375,0.23,157,-1.5,536,-0.65,516,-0.85,526,0.82,40,0.91,20,-0.09,316,-0.28,349,-0.38,420,0.11,215,0.49,66,0.03,241,0.46,43,-1.72,507,-0.89,493,-0.83,463,"2020-21",1610612759,"SAS","1629640_2020-21","Wing, Shooter"
1630189,"Tyler Bey",-0.28,340,-0.13,323,-0.15,329,-0.23,360,0.01,266,-0.22,382,-0.35,396,-0.1,317,-0.25,394,0.04,240,-0.11,315,0.14,203,-0.06,312,0.03,240,-0.08,347,-0.56,384,-0.06,287,-0.5,399,"2020-21",1610612742,"DAL","1630189_2020-21","Big, Shooter"
1629723,"John Konchar",0.67,104,0.29,138,0.38,131,0.06,223,-0.06,303,0.12,177,0.38,113,0.3,105,0.08,206,-0.44,381,-0.6,466,0.16,189,0.4,96,0.24,103,0.16,137,0.38,158,0.04,241,0.34,152,"2019-20",1610612763,"MEM","1629723_2019-20","No Role Available"
1627733,"Dragan Bender",-0.1,286,0.03,242,-0.13,329,-0.21,363,0.04,227,-0.25,409,0.23,163,0.17,155,0.06,214,-1.01,470,-0.6,458,-0.42,415,-0.58,482,-0.13,359,-0.45,501,-0.9,441,-0.16,328,-0.74,462,"2018-19",1610612756,"PHX","1627733_2018-19","No Role Available"
1629725,"Jeremiah Martin",-0.1,279,-0.22,367,0.12,213,-0.11,306,-0.19,377,0.08,204,-0.02,271,0.01,260,0.01,264,-0.49,393,0.07,235,-0.57,436,-0.04,299,-0.12,366,0.08,191,-0.22,313,-0.37,384,0.14,199,"2019-20",1610612751,"BKN","1629725_2019-20","No Role Available"
1629021,"Moritz Wagner",-0.95,478,-0.41,432,-0.54,441,-0.4,423,0.1,193,-0.5,476,0.57,84,-0.04,279,0.61,41,-1.4,510,-0.43,437,-0.96,504,0.01,268,0.11,185,-0.09,354,-0.68,409,0.06,227,-0.74,450,"2020-21",1610612764,"WAS","1629021_2020-21","Big, Shooter"
1629035,"Carsen Edwards",-0.15,296,-0.08,300,-0.07,278,-0.21,353,-0.14,366,-0.07,283,-0.07,296,0.01,243,-0.09,315,-0.27,345,0.17,183,-0.44,416,0.23,143,0.01,274,0.24,109,-0.47,366,-0.14,325,-0.33,359,"2020-21",1610612738,"BOS","1629035_2020-21","Wing, Shooter"
1627854,"Bryn Forbes",-0.73,399,-0.06,270,-0.67,417,-0.59,434,0.03,215,-0.62,464,0.12,176,0.07,194,0.05,216,-0.38,331,0.07,207,-0.45,381,-0.18,327,-0.25,397,0.07,191,-1.07,423,-0.07,257,-1,445,"2016-17",1610612759,"SAS","1627854_2016-17","No Role Available"
1627855,"Okaro White",0.13,179,-0.28,345,0.41,101,0.37,111,0.08,182,0.29,99,-0.91,464,-0.68,455,-0.23,350,0.39,130,-0.41,398,0.8,43,0.4,84,0.27,99,0.13,148,1.06,73,0.17,176,0.9,62,"2016-17",1610612748,"MIA","1627855_2016-17","No Role Available"
1627861,"Mike Tobey",-0.11,245,0.07,203,-0.17,277,-0.16,282,0.01,247,-0.15,313,-0.13,276,0.01,250,-0.12,297,0.02,241,0.19,160,-0.17,311,-0.1,294,-0.04,259,-0.06,290,-0.32,298,0.02,222,-0.34,321,"2016-17",1610612766,"CHA","1627861_2016-17","No Role Available"
203521,"Matthew Dellavedova",-1.1,503,-0.52,464,-0.58,467,-0.5,454,-0.47,485,-0.03,275,0.16,181,0.08,205,0.08,192,-0.81,465,0.09,226,-0.9,506,0.34,98,-0.03,309,0.38,50,-0.87,447,-0.64,465,-0.23,350,"2017-18",1610612749,"MIL","203521_2017-18","No Role Available"
1627863,"Danuel House Jr.",-1.06,486,-0.33,404,-0.73,478,-1.11,519,-0.54,503,-0.57,492,-0.55,447,-0.09,316,-0.45,469,-2.39,538,-0.54,469,-1.85,536,0.01,278,-0.1,344,0.1,185,-2.17,520,-0.91,495,-1.25,504,"2020-21",1610612745,"HOU","1627863_2020-21","Wing, Shooter"
1629133,"Daryl Macon",-0.11,283,0.06,235,-0.16,317,0.02,252,0.06,218,-0.04,277,-0.02,270,0.02,235,-0.04,289,0.15,212,0.14,192,0.02,245,-0.12,337,0.01,276,-0.12,358,-0.03,257,0.16,198,-0.2,327,"2019-20",1610612748,"MIA","1629133_2019-20","No Role Available"
1629185,"Chris Chiozza",0.93,74,0.66,64,0.27,159,0.6,69,0.5,54,0.1,194,0.15,186,-0.07,314,0.23,131,0.21,200,0.65,55,-0.45,412,1.03,8,0.7,14,0.33,73,1.77,30,1.34,21,0.43,134,"2019-20",1610612764,"WAS","1629185_2019-20","No Role Available"
200765,"Rajon Rondo",0.1,214,-0.02,282,0.12,210,-0.33,399,-0.35,439,0.02,243,0.11,199,0.06,207,0.05,221,-0.27,337,-0.02,279,-0.26,358,0.14,184,-0.02,296,0.16,138,-0.43,358,-0.41,394,-0.02,261,"2019-20",1610612747,"LAL","200765_2019-20","No Role Available"
200794,"Paul Millsap",1.65,23,0.74,53,0.91,46,0.5,80,0.29,112,0.21,138,-0.47,439,-0.1,326,-0.37,445,1.38,34,0.31,135,1.07,29,0.71,35,0.42,47,0.29,85,1.76,31,1.05,41,0.71,87,"2019-20",1610612743,"DEN","200794_2019-20","No Role Available"
1629651,"Nicolas Claxton",1.26,53,0.92,34,0.34,128,1.14,23,1.03,6,0.11,186,0.4,121,-0.47,472,0.86,18,0.51,126,-0.08,297,0.58,81,0.32,104,0.36,67,-0.04,307,2.33,16,1.78,7,0.55,120,"2020-21",1610612751,"BKN","1629651_2020-21","Big, Finisher"
1627885,"Shaquille Harrison",-1.14,492,-0.33,402,-0.81,492,-0.48,436,0.05,226,-0.53,488,-0.55,448,-0.42,460,-0.13,335,-0.74,453,-0.13,325,-0.62,460,-0.28,420,0.02,249,-0.3,459,-1.28,487,0.01,263,-1.27,508,"2020-21",1610612762,"UTA","1627885_2020-21","Ball Handler, Primary Playmaker"
1627863,"Danuel House Jr.",0.01,213,0.01,240,0.01,200,0.01,226,0.01,241,0.01,217,0.01,233,0.01,240,0.01,242,-0.02,253,0.01,243,-0.02,252,0.01,237,0.01,225,0.01,241,-0.02,224,0.01,225,-0.02,214,"2016-17",1610612764,"WAS","1627863_2016-17","No Role Available"
1629726,"Garrison Mathews",0.17,195,-0.12,336,0.3,154,0.36,116,0.34,96,0.02,238,0.18,175,-0.4,449,0.58,52,0.01,257,-0.12,332,0.12,206,0.41,94,0.23,108,0.17,126,0.98,82,0.51,111,0.47,123,"2019-20",1610612764,"WAS","1629726_2019-20","No Role Available"
1629729,"Josh Reaves",0.07,223,0.1,208,-0.03,262,-0.05,276,0.07,211,-0.12,343,0.03,247,0.01,247,0.02,242,-0.2,312,0.09,224,-0.3,374,0.08,204,-0.05,317,0.13,156,0.02,244,0.11,222,-0.09,290,"2019-20",1610612742,"DAL","1629729_2019-20","No Role Available"
1627868,"Patricio Garino",-0.41,334,-0.16,317,-0.25,316,-0.08,255,0.01,254,-0.07,256,-0.08,262,0.02,233,-0.1,286,0.16,189,0.01,244,0.16,165,-0.14,314,-0.07,276,-0.08,300,-0.21,274,-0.07,259,-0.14,251,"2016-17",1610612753,"ORL","1627868_2016-17","No Role Available"
1627875,"Marcus Georges-Hunt",-0.62,384,-0.25,340,-0.37,355,-0.24,318,-0.06,283,-0.18,331,0.11,181,0.01,252,0.12,178,0.01,245,-0.02,256,0.03,230,-0.2,337,-0.14,330,-0.06,294,-0.42,320,-0.17,287,-0.25,301,"2016-17",1610612753,"ORL","1627875_2016-17","No Role Available"
1627735,"Wade Baldwin IV",-0.84,450,-0.24,378,-0.6,460,-0.5,450,-0.15,374,-0.36,459,-0.03,264,0.1,189,-0.12,329,-0.52,404,-0.28,394,-0.23,362,-0.14,351,-0.05,299,-0.09,343,-1.02,457,-0.29,381,-0.73,461,"2018-19",1610612757,"POR","1627735_2018-19","No Role Available"
1627736,"Malik Beasley",0.05,206,-0.39,427,0.44,102,0.37,101,-0.36,455,0.73,23,-0.5,432,-0.03,287,-0.46,466,-0.27,345,-0.43,431,0.16,176,0.17,160,0.05,198,0.12,161,0.59,123,-0.39,408,0.98,46,"2018-19",1610612743,"DEN","1627736_2018-19","No Role Available"
201152,"Thaddeus Young",-1.03,468,0.04,248,-1.07,501,-1.33,525,-0.6,501,-0.73,511,-0.54,452,0.25,123,-0.8,509,-0.18,308,0.01,268,-0.19,336,0.41,92,0.84,10,-0.43,493,-1.77,508,0.1,226,-1.87,526,"2019-20",1610612741,"CHI","201152_2019-20","No Role Available"
1627738,"Deyonta Davis",0.07,196,0.2,157,-0.12,324,-0.13,333,0.09,191,-0.23,401,0.01,255,-0.14,349,0.13,169,-0.7,437,-0.2,371,-0.5,431,0.46,61,0.17,141,0.29,76,-0.21,309,0.1,194,-0.31,361,"2018-19",1610612737,"ATL","1627738_2018-19","No Role Available"
1626159,"Justise Winslow",0.13,208,0.37,114,-0.25,356,0.45,95,0.38,81,0.07,206,-0.18,335,-0.47,465,0.29,107,1.19,43,0.85,28,0.34,138,0.32,114,0.48,39,-0.16,379,0.83,100,1.02,45,-0.19,325,"2019-20",1610612748,"MIA","1626159_2019-20","No Role Available"
201229,"Anthony Tolliver",0.5,126,0.51,95,0.01,245,-0.17,337,-0.08,332,-0.1,307,0.56,87,0.11,183,0.45,73,-0.21,335,0.01,257,-0.22,350,0.52,57,0.45,47,0.07,201,0.21,195,0.23,175,0.01,239,"2020-21",1610612755,"PHI","201229_2020-21","No Role Available"
1627879,"Nicolas Laprovittola",-0.77,411,-0.09,284,-0.68,418,-0.45,398,0.01,242,-0.45,435,-0.19,304,-0.33,385,0.14,162,-0.99,443,-0.25,356,-0.74,433,-0.03,253,-0.04,257,0.01,242,-0.98,407,-0.19,292,-0.79,421,"2016-17",1610612759,"SAS","1627879_2016-17","No Role Available"
1627936,"Alex Caruso",2.26,11,2.11,1,0.15,186,0.43,110,0.65,23,-0.22,376,0.83,39,-0.23,383,1.06,10,1.43,29,0.45,109,0.99,37,1.08,7,1.22,1,-0.14,385,2.05,23,1.98,5,0.07,222,"2020-21",1610612747,"LAL","1627936_2020-21","Wing, Shooter"
1629734,"Kyle Alexander",-0.06,265,0.04,249,-0.1,294,0.01,259,0.03,234,-0.03,273,0.22,159,0.13,176,0.08,204,0.09,225,-0.02,281,0.11,208,-0.1,329,0.02,248,-0.12,357,-0.03,253,0.11,220,-0.13,304,"2019-20",1610612748,"MIA","1629734_2019-20","No Role Available"
1628366,"Lonzo Ball",0.38,152,-0.48,455,0.86,54,0.27,156,-0.09,345,0.36,102,-0.11,314,-0.15,345,0.04,246,1.04,60,0.31,142,0.73,60,-0.11,346,-0.12,359,0.01,265,0.44,158,-0.21,349,0.65,106,"2020-21",1610612740,"NOP","1628366_2020-21","Wing, Shooter"
1717,"Dirk Nowitzki",-0.18,272,0.14,169,-0.32,334,0.19,153,-0.06,281,0.25,110,-0.19,303,0.81,22,-1,477,-0.77,418,1.33,3,-2.1,486,-0.21,341,-0.95,484,0.74,10,0.22,167,-0.1,264,0.32,130,"2016-17",1610612742,"DAL","1717_2016-17","No Role Available"
1718,"Paul Pierce",0.35,132,0.07,201,0.27,128,0.43,99,0.31,85,0.12,154,-0.76,448,-0.2,339,-0.57,436,-0.5,359,0.01,252,-0.49,390,-0.21,340,-0.26,400,0.05,204,0.42,142,0.32,140,0.1,176,"2016-17",1610612746,"LAC","1718_2016-17","No Role Available"
1891,"Jason Terry",0.2,161,0.31,129,-0.11,248,0.6,61,0.22,114,0.38,74,-0.33,361,0.06,202,-0.39,400,0.02,239,-0.13,305,0.15,171,-0.05,273,0.3,89,-0.35,429,0.92,82,0.75,68,0.17,157,"2016-17",1610612749,"MIL","1891_2016-17","No Role Available"
203900,"Markel Brown",-0.05,267,-0.09,333,0.04,223,-0.05,281,0.02,241,-0.07,315,-0.08,304,-0.04,298,-0.04,283,-0.29,369,-0.15,362,-0.14,333,-0.04,310,-0.13,380,0.09,186,-0.23,334,-0.14,328,-0.08,291,"2017-18",1610612745,"HOU","203900_2017-18","No Role Available"
1629735,"Chris Silva",-0.54,399,-0.46,425,-0.08,283,-0.4,424,-0.32,426,-0.09,319,-0.9,502,-0.9,523,0.01,259,2.21,11,-0.33,407,2.54,1,-0.56,476,0.14,162,-0.7,521,-0.92,444,-0.62,439,-0.3,358,"2019-20",1610612748,"MIA","1629735_2019-20","No Role Available"
1629739,"William Howard",-0.1,276,0.08,221,-0.18,329,-0.2,351,-0.08,314,-0.13,348,-0.06,285,-0.07,306,0.01,253,-0.05,274,0.05,249,-0.1,293,0.13,187,0.15,159,0.01,273,-0.27,328,-0.02,273,-0.25,337,"2019-20",1610612745,"HOU","1629739_2019-20","No Role Available"
1629742,"Stanton Kidd",0.01,254,0.03,254,-0.04,266,0.06,226,0.08,206,-0.02,262,0.05,237,0.01,250,0.05,219,0.01,255,0.17,180,-0.16,329,-0.2,373,-0.14,372,-0.06,312,0.02,243,0.08,233,-0.06,271,"2019-20",1610612762,"UTA","1629742_2019-20","No Role Available"
1629744,"Matt Thomas",-0.06,266,-0.06,308,0.01,249,0.61,65,0.6,39,0.01,245,-1.1,516,-0.73,512,-0.36,441,1.02,60,0.77,43,0.25,163,-0.82,507,-0.57,504,-0.24,425,0.42,153,0.55,104,-0.13,303,"2019-20",1610612761,"TOR","1629744_2019-20","No Role Available"
1629057,"Robert Williams III",-0.59,424,-1.06,519,0.47,109,0.28,150,-0.22,414,0.5,72,-1.58,539,-0.45,470,-1.13,537,1.11,54,-0.98,521,2.08,4,-0.56,489,0.13,168,-0.69,525,-0.37,348,-0.79,477,0.42,149,"2020-21",1610612738,"BOS","1629057_2020-21","Big, Finisher"
1897,"Metta World Peace",-0.2,284,-0.03,255,-0.17,273,-0.33,362,-0.11,308,-0.22,356,0.3,132,0.17,152,0.12,177,0.06,226,0.06,213,0.01,242,-0.08,280,-0.1,299,0.02,227,-0.67,364,-0.24,314,-0.42,345,"2016-17",1610612747,"LAL","1897_2016-17","No Role Available"
1629060,"Rui Hachimura",-0.18,309,0.32,131,-0.5,429,-0.17,336,0.23,116,-0.4,450,0.48,103,0.52,62,-0.05,290,-0.18,324,1.03,18,-1.21,522,-0.07,322,-0.13,379,0.06,218,-0.44,361,0.53,107,-0.97,475,"2020-21",1610612764,"WAS","1629060_2020-21","Wing, Finisher"
1938,"Manu Ginobili",1.41,38,0.73,48,0.68,68,0.94,24,0.19,129,0.75,27,-0.03,246,-0.52,421,0.48,67,0.29,154,-0.15,316,0.44,105,0.48,66,0.86,4,-0.38,436,1.57,42,0.63,89,0.93,57,"2016-17",1610612759,"SAS","1938_2016-17","No Role Available"
1629745,"Tariq Owens",-0.25,335,-0.17,352,-0.07,280,-0.16,323,-0.08,315,-0.08,316,0.02,254,0.05,216,-0.03,282,-0.34,358,-0.29,397,-0.05,275,0.06,221,0.02,253,0.04,225,-0.25,322,-0.14,316,-0.11,300,"2019-20",1610612756,"PHX","1629745_2019-20","No Role Available"
1629117,"Wenyen Gabriel",0.32,165,0.19,172,0.13,195,-0.32,395,-0.02,280,-0.3,420,0.22,171,-0.04,281,0.27,130,0.74,90,-0.05,287,0.8,53,0.23,146,0.06,215,0.17,144,0.05,233,0.07,222,-0.02,243,"2020-21",1610612740,"NOP","1629117_2020-21","Big, Playmaker"
1629130,"Duncan Robinson",1.15,60,0.83,43,0.32,136,0.48,98,0.14,165,0.35,105,0.19,184,0.84,28,-0.65,506,-0.54,413,0.44,112,-0.98,508,0.73,22,0.93,5,-0.2,415,1.05,86,1.25,25,-0.21,322,"2020-21",1610612748,"MIA","1629130_2020-21","Wing, Shooter"
200751,"Randy Foye",-0.02,221,0.6,65,-0.62,409,-0.45,397,-0.31,397,-0.15,310,0.18,158,0.17,154,0.02,234,-1.51,471,-0.38,392,-1.13,470,-0.21,339,0.09,157,-0.3,411,-1.07,424,-0.41,364,-0.65,399,"2016-17",1610612751,"BKN","200751_2016-17","No Role Available"
200752,"Rudy Gay",1.12,53,0.85,36,0.27,129,0.31,128,0.31,88,0.01,210,0.5,85,-0.14,318,0.64,46,0.88,58,0.43,87,0.45,104,0.63,46,0.51,30,0.12,166,1.62,40,1.11,29,0.51,103,"2016-17",1610612758,"SAC","200752_2016-17","No Role Available"
200755,"JJ Redick",1.74,22,0.51,82,1.23,36,1.25,15,0.22,115,1.03,11,0.96,30,0.12,165,0.84,27,-0.85,426,-0.61,439,-0.24,325,0.15,153,-0.12,318,0.28,85,2.06,22,0.01,231,2.07,12,"2016-17",1610612746,"LAC","200755_2016-17","No Role Available"
1629750,"Javonte Green",-0.92,457,-0.27,386,-0.66,439,-0.18,340,-0.19,374,0.01,247,-0.74,485,-0.3,408,-0.44,459,-0.29,342,0.11,219,-0.39,399,-0.43,451,0.02,250,-0.46,498,-0.85,436,-0.17,322,-0.68,434,"2019-20",1610612738,"BOS","1629750_2019-20","No Role Available"
1629752,"Juwan Morgan",0.15,202,0.01,270,0.16,189,0.3,129,0.16,166,0.15,163,-0.75,487,-0.56,486,-0.18,370,0.84,79,0.24,153,0.6,82,0.02,250,-0.02,297,0.04,223,0.65,123,0.26,182,0.39,140,"2019-20",1610612762,"UTA","1629752_2019-20","No Role Available"
200757,"Thabo Sefolosha",0.25,153,0.49,87,-0.24,309,-0.32,358,-0.05,277,-0.27,375,0.22,149,0.01,242,0.22,133,0.34,138,0.51,69,-0.16,304,0.33,104,0.33,74,0.01,250,0.13,190,0.6,95,-0.46,358,"2016-17",1610612737,"ATL","200757_2016-17","No Role Available"
200765,"Rajon Rondo",-0.06,231,-0.1,286,0.05,182,-0.65,442,-0.49,448,-0.16,316,0.07,197,0.78,27,-0.71,456,-0.52,364,-0.71,454,0.19,157,-0.11,300,0.22,113,-0.33,423,-0.99,409,-0.38,358,-0.6,390,"2016-17",1610612741,"CHI","200765_2016-17","No Role Available"
1627753,"Zhou Qi",-0.02,244,0.01,267,0.01,250,0.01,249,0.01,275,0.01,231,0.01,251,0.01,251,0.01,267,0.01,249,0.01,286,0.01,247.5,-0.02,280,0.01,254,-0.02,295,-0.02,252,0.01,257,0.01,257,"2018-19",1610612745,"HOU","1627753_2018-19","No Role Available"
1629643,"Chuma Okeke",-0.34,362,0.02,251,-0.36,390,-0.11,311,0.41,63,-0.53,486,-0.21,348,-0.18,362,-0.03,285,-0.79,460,-0.04,282,-0.75,485,0.64,31,0.12,178,0.52,27,0.11,225,0.6,92,-0.49,396,"2020-21",1610612753,"ORL","1629643_2020-21","Wing, Shooter"
1629644,"KZ Okpala",-0.21,317,-0.6,473,0.39,122,-0.63,472,-0.12,359,-0.51,477,-0.32,385,-0.1,323,-0.21,381,0.06,229,0.01,254,0.05,229,-0.15,366,-0.15,392,0.01,273,-1.14,471,-0.26,364,-0.88,469,"2020-21",1610612748,"MIA","1629644_2020-21","Wing, Shooter"
200768,"Kyle Lowry",2.71,6,1.18,15,1.53,21,0.79,41,0.17,141,0.62,40,1.22,22,0.78,26,0.44,78,-0.02,255,-0.27,357,0.25,148,1.22,1,0.74,9,0.47,34,3.2,7,1.25,23,1.95,15,"2016-17",1610612761,"TOR","200768_2016-17","No Role Available"
203901,"Elfrid Payton",-1.83,532,-1.16,525,-0.66,467,-0.68,481,-0.25,429,-0.43,459,0.13,207,0.22,136,-0.08,312,1.04,62,-0.02,270,1.06,32,-0.67,502,-0.55,513,-0.12,371,-1.47,496,-0.71,467,-0.76,455,"2020-21",1610612752,"NYK","203901_2020-21","Ball Handler, Secondary Playmaker"
1628367,"Josh Jackson",-0.17,306,0.89,36,-1.06,517,-0.25,370,0.18,139,-0.43,462,0.13,209,0.03,229,0.1,210,1.03,63,0.38,125,0.66,70,-0.32,431,0.6,23,-0.92,536,-0.26,324,1.11,31,-1.37,516,"2020-21",1610612765,"DET","1628367_2020-21","Wing, Shooter"
200771,"Sergio Rodriguez",-0.07,235,0.01,245,-0.06,230,0.07,190,-0.09,301,0.16,142,-0.82,453,-0.35,393,-0.47,415,0.07,224,-0.03,259,0.1,202,-0.51,429,-0.3,416,-0.21,377,-0.53,344,-0.43,371,-0.09,239,"2016-17",1610612755,"PHI","200771_2016-17","No Role Available"
1629185,"Chris Chiozza",0.97,72,0.54,89,0.44,114,0.08,210,0.18,142,-0.09,301,0.01,272,0.37,91,-0.38,448,0.73,92,0.93,29,-0.2,340,0.25,133,0.08,197,0.17,141,0.51,150,0.65,80,-0.14,293,"2020-21",1610612751,"BKN","1629185_2020-21","Ball Handler, Primary Playmaker"
1629647,"Darius Bazley",-1.43,515,-0.3,390,-1.13,519,-1.43,532,-0.44,485,-0.99,532,0.58,80,0.76,30,-0.18,365,-1.13,491,0.1,211,-1.23,523,-0.21,393,-0.2,412,0.01,281,-2.69,534,-0.42,413,-2.28,534,"2020-21",1610612760,"OKC","1629647_2020-21","Wing, Shooter"
200779,"Steve Novak",-0.12,256,-0.16,316,0.04,190,0.07,186,0.03,222,0.05,175,0.01,231,-0.07,282,0.07,208,-0.12,281,-0.15,317,0.04,223,-0.09,288,-0.03,245,-0.06,293,0.01,220,-0.04,244,0.02,197,"2016-17",1610612749,"MIL","200779_2016-17","No Role Available"
200826,"J.J. Barea",0.61,92,0.46,91,0.15,151,0.32,125,0.09,176,0.23,115,0.02,219,0.58,55,-0.56,433,0.1,217,0.27,129,-0.17,310,0.5,62,0.3,87,0.2,110,0.6,123,0.52,106,0.07,187,"2016-17",1610612742,"DAL","200826_2016-17","No Role Available"
1630218,"Robert Woodard II",0.22,185,0.08,212,0.14,192,0.14,191,0.04,236,0.1,188,0.12,214,0.01,249,0.11,203,0.2,192,0.06,235,0.14,204,0.01,275,-0.13,374,0.13,164,0.2,202,0.01,251,0.18,187,"2020-21",1610612758,"SAC","1630218_2020-21","Big, Finisher"
1629683,"Quinndary Weatherspoon",-0.32,352,-0.21,358,-0.11,302,-0.65,475,-0.34,453,-0.31,423,0.11,217,-0.24,389,0.35,102,-0.26,344,-0.27,382,0.01,252,-0.12,353,0.06,218,-0.18,404,-0.98,451,-0.43,416,-0.55,416,"2020-21",1610612759,"SAS","1629683_2020-21","Wing, Shooter"
1628373,"Frank Ntilikina",-0.42,380,0.41,108,-0.83,498,-0.06,275,0.15,159,-0.21,370,0.52,95,0.34,101,0.18,165,0.04,236,0.61,76,-0.57,451,0.04,251,0.24,101,-0.2,413,-0.46,365,0.3,160,-0.76,454,"2020-21",1610612752,"NYK","1628373_2020-21","Wing, Playmaker"
1629719,"Devontae Cacok",0.07,221,-0.14,327,0.21,163,0.28,151,0.1,195,0.18,162,0.32,141,-0.12,333,0.44,77,-0.16,316,-0.46,443,0.3,154,0.2,157,0.19,123,0.01,263,0.55,146,0.14,200,0.41,152,"2020-21",1610612747,"LAL","1629719_2020-21","Big, Playmaker"
1628374,"Lauri Markkanen",-0.89,470,-0.36,417,-0.53,434,0.14,189,0.13,173,0.01,232,-0.45,425,0.31,105,-0.76,516,-0.32,361,0.82,43,-1.14,518,-0.68,504,-0.3,462,-0.38,481,-0.75,419,0.11,206,-0.86,465,"2020-21",1610612741,"CHI","1628374_2020-21","Wing, Shooter"
201142,"Kevin Durant",2.45,9,-0.07,275,2.51,5,1.79,5,0.48,47,1.31,5,0.32,123,-0.2,340,0.52,59,-0.22,305,0.83,23,-1.05,467,-0.11,302,-0.29,412,0.18,122,2.72,11,0.56,100,2.16,11,"2016-17",1610612744,"GSW","201142_2016-17","No Role Available"
201143,"Al Horford",0.26,149,-0.13,294,0.39,105,0.53,78,0.05,205,0.48,58,0.69,54,0.98,12,-0.29,370,-1.07,446,-0.1,289,-0.97,462,-0.13,311,-0.25,393,0.12,165,0.71,105,0.07,203,0.64,84,"2016-17",1610612738,"BOS","201143_2016-17","No Role Available"
201144,"Mike Conley",1.59,30,0.03,219,1.56,19,0.57,70,0.05,202,0.52,52,0.13,172,-0.22,349,0.35,98,0.08,222,0.14,175,-0.06,272,0.58,55,-0.02,239,0.6,20,1.68,38,-0.09,262,1.77,23,"2016-17",1610612763,"MEM","201144_2016-17","No Role Available"
201145,"Jeff Green",-1.21,458,0.01,235,-1.21,470,-0.7,450,0.17,138,-0.87,480,0.3,129,-0.06,277,0.36,93,-0.42,338,0.1,192,-0.52,398,-0.1,299,-0.23,383,0.13,158,-1.74,461,-0.29,326,-1.45,472,"2016-17",1610612753,"ORL","201145_2016-17","No Role Available"
1626145,"Tyus Jones",-0.55,412,0.06,230,-0.61,455,-0.71,487,0.01,261,-0.72,515,-0.48,435,0.24,129,-0.72,510,-0.6,431,-0.18,344,-0.43,412,0.04,249,0.07,202,-0.03,301,-1.14,472,0.18,191,-1.33,513,"2020-21",1610612763,"MEM","1626145_2020-21","Ball Handler, Secondary Playmaker"
1713,"Vince Carter",-1.07,475,-0.46,426,-0.6,432,-0.09,298,0.18,157,-0.27,423,-0.82,493,-0.57,487,-0.26,402,-1.82,516,-0.77,486,-1.04,501,0.06,223,0.03,235,0.03,238,-0.94,446,-0.19,328,-0.75,449,"2019-20",1610612737,"ATL","1713_2019-20","No Role Available"
200746,"LaMarcus Aldridge",-0.17,308,-0.32,398,0.15,194,-0.24,372,0.12,186,-0.36,452,0.58,73,0.79,25,-0.21,379,0.77,92,1.44,5,-0.67,452,-0.47,459,-0.87,523,0.4,58,-0.17,292,0.01,258,-0.18,321,"2019-20",1610612759,"SAS","200746_2019-20","No Role Available"
1627763,"Malcolm Brogdon",1.92,20,0.9,28,1.02,31,0.71,51,0.06,205,0.65,33,0.77,41,0.85,18,-0.08,313,0.86,76,0.97,20,-0.11,320,0.01,271,-0.16,371,0.15,136,1.89,30,0.65,83,1.24,34,"2018-19",1610612749,"MIL","1627763_2018-19","No Role Available"
1629713,"Justin James",-0.33,357,-0.05,281,-0.28,371,-0.55,456,-0.23,415,-0.33,429,0.04,253,-0.11,329,0.15,183,-0.98,479,-0.22,361,-0.76,487,0.29,116,0.12,177,0.17,142,-0.73,417,-0.11,302,-0.62,432,"2020-21",1610612758,"SAC","1629713_2020-21","Wing, Shooter"
200755,"JJ Redick",-0.96,462,-1.32,521,0.35,140,0.47,89,-0.47,472,0.94,7,-0.53,449,-0.67,505,0.14,166,-0.9,458,-1.18,511,0.28,151,-0.77,499,-0.3,441,-0.47,502,-0.23,317,-1.53,518,1.3,30,"2019-20",1610612740,"NOP","200755_2019-20","No Role Available"
1630466,"Gabriel Deck",0.37,154,-0.05,283,0.42,116,-0.53,451,-0.45,489,-0.08,292,0.1,221,0.14,174,-0.03,284,-0.51,406,-0.26,378,-0.25,365,0.53,56,0.18,129,0.34,74,-0.39,350,-0.48,431,0.09,216,"2020-21",1610612760,"OKC","1630466_2020-21","No Role Available"
1629653,"Devon Dotson",0.55,116,0.23,156,0.31,138,0.26,159,0.2,127,0.07,199,0.18,190,-0.03,267,0.21,153,0.22,186,0.09,215,0.13,207,0.13,189,0.1,190,0.03,246,0.54,147,0.39,134,0.15,195,"2020-21",1610612741,"CHI","1629653_2020-21","Ball Handler, Primary Playmaker"
201148,"Brandan Wright",0.06,198,-0.03,256,0.09,165,0.35,115,0.31,84,0.04,180,-0.03,243,-0.08,289,0.05,213,-0.71,400,-0.35,383,-0.36,360,-0.02,250,-0.15,336,0.13,155,0.32,152,0.24,159,0.08,185,"2016-17",1610612763,"MEM","201148_2016-17","No Role Available"
201149,"Joakim Noah",-0.39,328,-0.05,266,-0.33,343,-0.32,354,-0.11,312,-0.21,348,0.31,128,0.7,36,-0.39,401,0.64,91,0.12,185,0.53,82,-0.45,421,-0.51,461,0.05,203,-0.96,404,-0.33,341,-0.63,397,"2016-17",1610612752,"NYK","201149_2016-17","No Role Available"
201160,"Jason Smith",-0.52,359,-0.34,362,-0.17,278,0.47,88,0.26,101,0.21,119,-1.32,477,-1.21,482,-0.11,292,0.17,186,-0.34,380,0.51,86,-0.5,427,-0.24,389,-0.26,396,0.07,206,-0.22,303,0.29,133,"2016-17",1610612764,"WAS","201160_2016-17","No Role Available"
203937,"Kyle Anderson",0.49,121,0.81,34,-0.31,393,0.26,140,0.6,35,-0.34,458,0.34,124,0.59,35,-0.25,389,0.04,259,0.29,139,-0.24,376,0.36,93,0.2,117,0.16,150,0.81,96,1.28,23,-0.47,418,"2017-18",1610612759,"SAS","203937_2017-18","No Role Available"
1627774,"Jake Layman",-0.02,242,-0.05,291,0.03,228,0.42,90,0.04,223,0.37,70,-0.29,384,0.48,64,-0.76,514,0.06,227,-0.38,419,0.43,103,-0.68,500,-0.29,441,-0.39,485,-0.25,322,-0.33,393,0.08,207,"2018-19",1610612757,"POR","1627774_2018-19","No Role Available"
1627775,"Patrick McCaw",-1.11,483,-0.46,442,-0.65,466,-0.33,413,-0.25,422,-0.08,313,-0.66,466,-0.2,383,-0.46,464,-0.62,423,-0.48,439,-0.14,333,-0.34,417,0.09,169,-0.43,498,-1.1,464,-0.58,449,-0.52,417,"2018-19",0,"League","1627775_2018-19","No Role Available"
1627777,"Georges Niang",-0.32,354,-0.44,438,0.12,180,-0.12,326,-0.16,385,0.04,204,0.01,244,-0.32,431,0.33,94,-0.39,380,-0.13,347,-0.26,371,-0.81,511,-0.57,515,-0.24,427,-0.96,453,-0.91,488,-0.05,283,"2018-19",1610612762,"UTA","1627777_2018-19","No Role Available"
200768,"Kyle Lowry",1.37,39,0.59,80,0.78,62,0.29,137,0.42,68,-0.13,355,0.76,46,0.11,186,0.65,39,-0.21,317,0.36,118,-0.57,437,0.57,56,0.57,28,0.01,260,1.29,59,1.17,32,0.12,210,"2019-20",1610612761,"TOR","200768_2019-20","No Role Available"
200826,"J.J. Barea",0.13,207,0.16,184,-0.03,259,-0.41,428,-0.32,431,-0.09,321,-0.24,354,0.4,72,-0.64,488,-0.9,459,-0.18,355,-0.71,461,0.44,81,0.18,139,0.26,94,-0.61,399,-0.33,369,-0.28,344,"2019-20",1610612742,"DAL","200826_2019-20","No Role Available"
201143,"Al Horford",0.47,128,0.32,129,0.15,195,1.3,8,0.34,94,0.96,4,-0.66,473,0.24,129,-0.9,520,0.22,198,0.45,95,-0.23,348,-0.28,403,0.01,264,-0.29,444,1.16,68,0.75,70,0.4,139,"2019-20",1610612755,"PHI","201143_2019-20","No Role Available"
201144,"Mike Conley",0.02,237,0.27,143,-0.25,358,-0.38,415,-0.3,419,-0.08,311,0.2,167,0.08,199,0.12,181,-0.28,341,-0.4,428,0.12,203,-0.02,284,0.26,93,-0.28,441,-0.4,353,-0.24,340,-0.17,315,"2019-20",1610612762,"UTA","201144_2019-20","No Role Available"
1629677,"Luka Samanic",-0.39,373,0.03,243,-0.42,411,-0.16,333,0.17,145,-0.33,431,-0.55,451,-0.58,494,0.03,249,0.02,248,0.12,199,-0.1,301,-0.3,425,-0.16,395,-0.14,386,-0.22,312,0.29,163,-0.51,404,"2020-21",1610612759,"SAS","1629677_2020-21","Wing, Shooter"
1629735,"Chris Silva",-0.12,283,0.01,267,-0.11,301,0.03,236,0.04,232,-0.02,245,-0.03,279,-0.26,397,0.23,142,0.2,191,0.56,85,-0.36,394,-0.13,358,-0.03,298,-0.1,361,-0.08,269,0.09,215,-0.17,305,"2020-21",1610612748,"MIA","1629735_2020-21","Big, Finisher"
201162,"Jared Dudley",0.95,65,1.2,14,-0.25,312,0.39,102,0.62,22,-0.23,358,-0.57,421,-0.32,378,-0.26,358,0.09,219,0.16,167,-0.07,279,0.19,144,0.41,55,-0.22,384,0.07,204,0.87,51,-0.8,424,"2016-17",1610612756,"PHX","201162_2016-17","No Role Available"
1629750,"Javonte Green",0.25,180,0.19,170,0.06,221,0.2,175,-0.1,348,0.3,116,-0.17,331,-0.37,443,0.2,157,0.32,162,-0.11,320,0.43,115,0.57,47,0.47,43,0.1,182,0.65,136,0.16,197,0.49,132,"2020-21",1610612738,"BOS","1629750_2020-21","Wing, Shooter"
201167,"Arron Afflalo",-2.25,484,-1.22,480,-1.02,462,-0.31,348,-0.4,429,0.1,161,0.01,229,-0.31,377,0.3,104,-1.19,454,-0.44,407,-0.75,439,-1.09,480,-0.66,480,-0.43,445,-1.75,462,-1.28,474,-0.48,363,"2016-17",1610612758,"SAC","201167_2016-17","No Role Available"
2403,"Nene",1.4,37,1.11,14,0.29,130,0.98,27,0.61,31,0.37,74,0.31,135,-0.14,367,0.45,71,0.34,153,1.01,12,-0.67,469,0.58,52,0.56,27,0.02,251,2.06,31,1.3,22,0.76,77,"2017-18",1610612745,"HOU","2403_2017-18","No Role Available"
2544,"LeBron James",0.97,65,-0.77,508,1.74,7,0.79,52,-0.81,527,1.61,3,0.46,93,0.33,96,0.13,175,-0.29,368,0.28,140,-0.57,454,-0.08,330,-0.44,495,0.36,54,1.24,62,-1.33,525,2.57,4,"2017-18",1610612739,"CLE","2544_2017-18","No Role Available"
2546,"Carmelo Anthony",1.28,49,-0.25,391,1.53,14,-0.28,401,-0.46,480,0.18,141,1.17,18,0.19,146,0.97,16,1.67,19,0.23,163,1.44,11,0.13,192,-0.17,405,0.3,76,1.08,73,-0.34,398,1.41,23,"2017-18",1610612760,"OKC","2546_2017-18","No Role Available"
1626164,"Devin Booker",0.99,70,-0.64,479,1.63,11,0.95,29,-0.15,369,1.1,9,-0.12,316,-0.65,511,0.53,54,0.16,206,-0.85,509,1,36,0.11,196,-0.12,369,0.24,107,1.8,37,-0.69,462,2.49,6,"2020-21",1610612756,"PHX","1626164_2020-21","Wing, Playmaker"
1629011,"Mitchell Robinson",0.97,70,0.39,110,0.59,93,0.03,241,0.2,150,-0.17,375,0.45,94,-0.34,425,0.79,21,2.22,9,0.11,218,2.12,3,-0.35,431,-0.31,446,-0.04,296,0.21,188,0.07,235,0.14,201,"2019-20",1610612752,"NYK","1629011_2019-20","No Role Available"
203658,"Norvel Pelle",0.03,228,0.13,189,-0.09,293,0.29,147,0.08,205,0.2,146,0.06,245,0.01,257,0.06,234,-0.51,407,-0.31,397,-0.21,347,0.03,259,0.08,198,-0.05,319,0.3,176,0.11,205,0.19,181,"2020-21",1610612751,"BKN","203658_2020-21","Big, Finisher"
1629661,"Cameron Johnson",0.67,105,0.24,158,0.43,118,-0.14,318,-0.04,291,-0.1,332,-0.76,490,-0.6,491,-0.17,357,1.02,59,0.81,34,0.21,173,0.15,183,-0.14,374,0.28,87,-0.2,303,-0.35,376,0.15,198,"2019-20",1610612756,"PHX","1629661_2019-20","No Role Available"
202734,"ETwaun Moore",-0.85,444,-0.67,459,-0.18,326,-0.12,309,-0.07,307,-0.05,288,-0.58,458,0.15,165,-0.73,503,0.2,201,0.16,186,0.05,235,0.06,218,-0.12,364,0.18,125,-0.22,312,-0.15,318,-0.07,275,"2019-20",1610612740,"NOP","202734_2019-20","No Role Available"
201177,"Josh McRoberts",-0.84,417,-0.55,409,-0.29,326,-0.48,413,-0.26,376,-0.23,359,0.25,143,0.92,16,-0.67,453,-0.42,339,-0.25,352,-0.17,307,-0.26,373,-0.28,406,0.01,235,-0.99,411,-0.41,363,-0.58,386,"2016-17",1610612748,"MIA","201177_2016-17","No Role Available"
201145,"Jeff Green",-1.09,477,-0.06,303,-1.03,496,-0.43,429,-0.2,378,-0.23,406,0.08,220,0.01,245,0.07,209,-1.96,520,-0.27,390,-1.69,527,-0.56,477,0.01,282,-0.56,509,-1.45,491,-0.32,367,-1.13,498,"2019-20",1610612762,"UTA","201145_2019-20","No Role Available"
201188,"Marc Gasol",-0.03,224,-0.12,291,0.1,162,-0.06,251,0.16,145,-0.22,355,-0.03,244,-0.69,457,0.66,41,0.99,48,1.37,2,-0.38,363,-0.29,385,-0.43,446,0.14,143,0.47,133,0.27,154,0.2,151,"2016-17",1610612763,"MEM","201188_2016-17","No Role Available"
1627782,"Wayne Selden",-1.19,489,-0.42,434,-0.77,482,-1.31,525,-0.72,520,-0.59,501,-0.07,284,-0.17,366,0.1,185,-0.63,425,-0.56,454,-0.07,299,0.01,253,0.01,250,0.01,260,-2.15,517,-1.27,517,-0.88,483,"2018-19",1610612763,"MEM","1627782_2018-19","No Role Available"
203924,"Jerami Grant",-0.27,335,-0.02,269,-0.25,360,-0.26,373,0.15,161,-0.41,455,0.74,50,-0.53,487,1.27,4,0.86,75,0.34,132,0.52,95,-0.03,295,-0.08,332,0.05,224,-0.04,252,0.05,238,-0.08,267,"2020-21",1610612765,"DET","203924_2020-21","Wing, Shooter"
1629738,"Vincent Poirier",-0.28,341,-0.1,306,-0.18,340,-0.04,265,0.05,230,-0.08,290,-0.55,449,-0.48,475,-0.07,301,-0.14,304,-0.02,269,-0.12,311,-0.03,298,-0.02,285,0.01,283,-0.2,308,0.01,252,-0.21,324,"2020-21",1610612755,"PHI","1629738_2020-21","Big, Finisher"
201147,"Corey Brewer",0.27,172,0.14,188,0.13,207,-0.05,278,-0.12,339,0.08,205,-0.18,333,-0.12,334,-0.06,299,-0.17,305,-0.19,358,0.02,244,0.24,136,0.2,128,0.04,227,0.04,238,-0.09,300,0.13,204,"2019-20",1610612758,"SAC","201147_2019-20","No Role Available"
1629109,"Gary Clark",-0.28,343,-0.27,382,0.01,246,-0.71,488,-0.23,417,-0.48,469,0.6,77,0.22,133,0.37,93,0.45,141,0.32,136,0.12,209,-0.11,344,-0.22,426,0.11,175,-0.78,426,-0.38,402,-0.4,384,"2020-21",1610612753,"ORL","1629109_2020-21","Wing, Shooter"
203925,"Joe Harris",1.12,63,0.3,135,0.82,59,1.46,12,0.38,76,1.08,10,-0.04,282,0.19,150,-0.22,387,0.82,80,1.05,15,-0.23,352,-0.02,287,-0.2,415,0.18,139,2.34,15,0.54,103,1.8,20,"2020-21",1610612751,"BKN","203925_2020-21","Wing, Shooter"
201196,"Ramon Sessions",0.01,217,0.03,217,-0.04,222,0.04,198,0.19,132,-0.14,308,0.59,70,0.32,105,0.27,112,-0.07,264,0.05,217,-0.12,293,-0.65,451,-0.48,455,-0.17,355,-0.39,309,0.08,199,-0.47,360,"2016-17",1610612766,"CHA","201196_2016-17","No Role Available"
201202,"Joel Anthony",-0.34,319,-0.05,264,-0.29,328,-0.31,351,0.02,226,-0.32,395,0.27,141,0.35,95,-0.08,276,0.25,170,0.32,112,-0.07,275,-0.05,272,-0.2,361,0.14,142,-0.41,317,0.09,197,-0.5,368,"2016-17",1610612759,"SAS","201202_2016-17","No Role Available"
201228,"C.J. Watson",-0.21,290,0.5,84,-0.71,427,-0.95,474,-0.27,385,-0.69,471,-0.23,321,0.01,239,-0.24,353,-0.17,295,0.46,83,-0.62,409,0.29,113,0.32,80,-0.03,269,-1.5,454,-0.16,282,-1.35,466,"2016-17",1610612753,"ORL","201228_2016-17","No Role Available"
1627783,"Pascal Siakam",1.79,24,1,24,0.79,54,1.76,5,0.88,5,0.88,13,0.59,71,0.59,41,0.01,262,0.27,173,0.87,28,-0.6,446,-0.12,341,-0.12,350,0.01,283,2.83,9,1.56,7,1.27,33,"2018-19",1610612761,"TOR","1627783_2018-19","No Role Available"
203994,"Jusuf Nurkic",2.3,10,1.13,15,1.17,25,0.8,38,0.44,53,0.36,77,0.66,58,0.49,63,0.17,144,2.04,11,0.95,21,1.08,31,0.4,82,0.05,201,0.35,54,2.47,13,1.01,39,1.46,22,"2018-19",1610612757,"POR","203994_2018-19","No Role Available"
1629962,"Devin Cannady",0.21,187,0.01,256,0.21,161,-0.16,330,0.02,251,-0.18,355,0.32,143,-0.13,339,0.45,76,-0.59,428,-0.43,434,-0.16,329,0.27,127,0.13,167,0.14,161,-0.15,292,-0.12,318,-0.03,245,"2020-21",1610612753,"ORL","1629962_2020-21","No Role Available"
1630162,"Anthony Edwards",-0.09,277,-0.9,509,0.8,61,-0.92,511,-0.92,533,0.01,235,0.03,258,-0.06,292,0.09,217,-0.15,309,-0.69,489,0.54,92,0.51,59,0.19,124,0.32,81,-0.93,444,-1.53,528,0.6,115,"2020-21",1610612750,"MIN","1630162_2020-21","Ball Handler, Secondary Playmaker"
201149,"Joakim Noah",-0.24,330,-0.06,307,-0.18,325,-0.04,275,0.09,197,-0.13,354,-0.09,303,-0.28,404,0.2,140,0.06,238,0.06,241,0.01,253,-0.2,374,-0.08,338,-0.12,351,-0.31,337,0.01,260,-0.31,364,"2019-20",1610612746,"LAC","201149_2019-20","No Role Available"
201162,"Jared Dudley",-0.13,295,0.26,146,-0.4,400,0.09,203,0.26,121,-0.17,376,-0.31,381,0.05,215,-0.36,440,0.25,189,0.4,110,-0.15,323,-0.15,352,0.12,173,-0.27,435,-0.14,286,0.59,95,-0.73,444,"2019-20",1610612747,"LAL","201162_2019-20","No Role Available"
1630163,"LaMelo Ball",-1.38,509,-0.68,484,-0.69,473,-0.74,495,-0.83,530,0.08,193,-0.42,413,-0.08,304,-0.34,428,0.36,155,-0.25,375,0.61,75,-0.38,447,0.51,34,-0.88,534,-1.53,500,-0.86,485,-0.67,438,"2020-21",1610612766,"CHA","1630163_2020-21","Ball Handler, Secondary Playmaker"
1630256,"JaeSean Tate",0.38,151,-0.25,373,0.63,81,-0.39,418,-0.56,504,0.17,168,-0.19,341,0.07,208,-0.26,399,0.8,83,0.07,232,0.74,59,0.01,266,0.29,80,-0.28,454,-0.24,317,-0.39,404,0.15,193,"2020-21",1610612745,"HOU","1630256_2020-21","Big, Shooter"
201229,"Anthony Tolliver",-1.12,448,-0.65,429,-0.47,386,0.39,104,-0.3,392,0.69,33,-0.1,267,-0.5,418,0.41,82,0.15,194,0.54,62,-0.39,365,-0.62,447,-0.08,285,-0.54,463,-0.09,243,-0.64,405,0.56,95,"2016-17",1610612758,"SAC","201229_2016-17","No Role Available"
201563,"Michael Beasley",-0.77,413,-0.5,399,-0.27,318,0.01,220,-0.19,350,0.19,129,-0.18,302,-0.37,397,0.19,149,0.01,251,-0.7,451,0.69,53,-0.57,442,-0.2,364,-0.37,435,-0.85,391,-0.86,436,0.01,206,"2016-17",1610612749,"MIL","201563_2016-17","No Role Available"
201565,"Derrick Rose",0.16,169,-0.63,427,0.79,58,0.12,173,-0.1,305,0.22,117,0.04,215,0.06,206,-0.03,253,0.02,236,-0.6,438,0.62,66,-0.25,356,-0.59,471,0.35,59,-0.08,240,-1,451,0.91,60,"2016-17",1610612752,"NYK","201565_2016-17","No Role Available"
1627786,"Troy Williams",-0.4,377,-0.19,362,-0.21,356,-0.53,455,-0.25,423,-0.28,428,0.24,158,-0.23,397,0.47,66,0.2,190,0.14,199,0.05,227,-0.17,360,0.13,155,-0.29,460,-0.9,442,-0.24,361,-0.66,445,"2018-19",1610612758,"SAC","1627786_2018-19","No Role Available"
201163,"Wilson Chandler",-0.65,411,0.38,111,-1.03,497,-0.6,468,-0.3,417,-0.3,431,0.25,151,0.3,104,-0.05,295,0.41,153,0.6,65,-0.19,337,-0.87,513,-0.4,466,-0.46,500,-1.49,497,-0.46,410,-1.03,487,"2019-20",1610612751,"BKN","201163_2019-20","No Role Available"
201188,"Marc Gasol",0.96,71,1.8,5,-0.84,481,1.12,20,0.73,20,0.39,79,0.44,99,1.2,7,-0.77,507,-1,470,0.23,155,-1.23,516,0.61,52,0.59,26,0.02,249,2.22,15,2.23,5,0.01,257,"2019-20",1610612761,"TOR","201188_2019-20","No Role Available"
1630264,"Anthony Gill",0.2,192,0.13,186,0.06,217,-0.05,270,0.15,160,-0.2,365,-0.1,306,-0.19,365,0.09,220,0.53,123,0.03,245,0.5,101,0.25,135,0.27,91,-0.03,293,0.2,199,0.33,152,-0.13,288,"2020-21",1610612764,"WAS","1630264_2020-21","Wing, Shooter"
204025,"Tim Frazier",-0.22,331,0.06,240,-0.27,382,-0.85,511,-0.55,500,-0.3,440,-0.21,361,-0.08,327,-0.13,343,0.12,223,0.56,68,-0.44,432,0.5,66,0.19,122,0.31,72,-0.72,423,-0.4,411,-0.32,380,"2017-18",1610612764,"WAS","204025_2017-18","No Role Available"
1627816,"Alex Poythress",-0.59,422,0.11,190,-0.7,472,-0.2,361,-0.09,339,-0.11,342,-0.23,358,-0.23,403,0.01,248,0.2,191,0.33,126,-0.13,326,0.02,246,0.18,138,-0.15,389,-0.47,367,-0.03,267,-0.44,401,"2018-19",1610612737,"ATL","1627816_2018-19","No Role Available"
1627820,"Tyrone Wallace",0.27,148,0.09,197,0.18,164,0.43,89,0.48,42,-0.06,296,0.19,182,-0.62,490,0.81,24,0.22,183,-0.23,382,0.45,100,-0.1,331,0.03,217,-0.13,377,0.47,139,0.35,138,0.12,191,"2018-19",1610612746,"LAC","1627820_2018-19","No Role Available"
1627846,"Abdel Nader",-1.39,506,-0.37,420,-1.02,507,-0.91,505,-0.18,389,-0.73,514,-1.08,516,-0.77,508,-0.31,418,-2.11,525,-0.87,496,-1.24,514,-0.04,291,0.04,210,-0.09,339,-1.91,507,-0.34,395,-1.57,515,"2018-19",1610612760,"OKC","1627846_2018-19","No Role Available"
1627936,"Alex Caruso",0.62,104,0.17,169,0.45,101,0.64,59,0.54,32,0.09,175,0.51,87,-0.05,300,0.56,45,0.86,77,-0.18,363,1.04,33,-0.06,302,0.23,116,-0.29,458,1.06,74,0.96,46,0.1,201,"2018-19",1610612747,"LAL","1627936_2018-19","No Role Available"
201229,"Anthony Tolliver",0.01,250,0.05,240,-0.05,269,-0.59,465,-0.33,433,-0.27,419,0.25,150,-0.03,273,0.28,111,-1.26,490,-0.76,485,-0.5,423,0.44,82,0.39,56,0.05,215,-1.16,466,-0.62,438,-0.54,410,"2019-20",1610612757,"POR","201229_2019-20","No Role Available"
201566,"Russell Westbrook",1.51,33,0.24,142,1.27,32,0.17,159,-0.03,266,0.19,126,1.36,13,0.05,215,1.31,4,2.09,9,0.38,97,1.71,6,0.25,129,0.05,185,0.2,113,1.47,47,0.14,189,1.33,41,"2016-17",1610612760,"OKC","201566_2016-17","No Role Available"
204028,"Tarik Black",-1.19,508,-0.52,462,-0.67,486,-0.55,473,-0.1,352,-0.45,485,-0.65,489,-0.72,512,0.07,203,0.36,146,-0.06,324,0.42,108,-0.5,481,0.12,161,-0.62,527,-1.58,507,-0.3,383,-1.27,522,"2017-18",1610612745,"HOU","204028_2017-18","No Role Available"
1628021,"David Nwaba",0.82,80,0.15,173,0.67,61,-0.31,409,-0.53,491,0.22,118,0.22,167,0.46,70,-0.24,388,0.35,158,-0.38,422,0.73,64,0.77,28,0.45,45,0.31,64,0.7,105,-0.11,302,0.82,63,"2018-19",1610612739,"CLE","1628021_2018-19","No Role Available"
200794,"Paul Millsap",0.93,78,0.36,122,0.57,92,0.29,146,-0.27,437,0.56,66,-0.63,468,0.1,188,-0.73,512,0.81,81,0.42,116,0.4,127,0.31,108,0.44,49,-0.13,377,0.28,180,-0.11,306,0.39,155,"2020-21",1610612743,"DEN","200794_2020-21","Big, Shooter"
201567,"Kevin Love",-1.12,480,-1,500,-0.12,302,-0.41,425,-0.86,519,0.45,60,-0.3,379,0.77,28,-1.07,524,0.23,195,0.48,90,-0.25,357,-0.77,498,-0.46,482,-0.31,450,-0.95,448,-1.12,493,0.18,189,"2019-20",1610612739,"CLE","201567_2019-20","No Role Available"
201569,"Eric Gordon",0.22,183,-0.96,498,1.18,29,-0.31,392,-0.26,405,-0.05,287,0.98,28,-0.26,394,1.24,5,-1.99,522,-0.58,465,-1.41,524,-0.54,472,-0.51,493,-0.03,282,-0.86,437,-1.17,495,0.3,158,"2019-20",1610612745,"HOU","201569_2019-20","No Role Available"
1628035,"Alfonzo McKinnie",-0.64,429,-0.29,392,-0.35,394,-0.28,390,-0.05,314,-0.23,403,-1.18,520,-0.89,515,-0.29,405,1.84,18,0.52,79,1.32,16,-0.43,455,-0.09,333,-0.33,471,-0.72,416,-0.28,376,-0.44,398,"2018-19",1610612744,"GSW","1628035_2018-19","No Role Available"
201567,"Kevin Love",1.7,26,0.12,181,1.58,17,0.72,46,0.13,157,0.59,47,0.88,37,0.68,39,0.2,141,2,11,0.36,99,1.63,7,0.26,125,0.32,78,-0.07,296,2.66,12,0.85,52,1.8,21,"2016-17",1610612739,"CLE","201567_2016-17","No Role Available"
1628070,"Jordan Loyd",-0.24,333,0.01,268,-0.22,360,0.01,260,0.01,258,0.01,255,-0.13,312,-0.21,390,0.08,197,0.16,198,-0.07,320,0.23,152,-0.43,458,-0.04,288,-0.39,489,-0.24,320,-0.05,273,-0.19,326,"2018-19",1610612761,"TOR","1628070_2018-19","No Role Available"
201568,"Danilo Gallinari",1.36,41,0.01,237,1.36,28,0.68,52,0.16,147,0.52,53,1.47,10,0.53,62,0.94,15,1.16,36,0.61,53,0.55,79,-0.22,344,-0.45,450,0.23,99,1.8,33,0.23,164,1.57,30,"2016-17",1610612743,"DEN","201568_2016-17","No Role Available"
1628407,"Dwayne Bacon",-0.61,434,0.04,248,-0.65,484,0.03,219,0.22,131,-0.2,392,1.1,20,0.76,26,0.34,94,0.34,152,0.52,71,-0.18,352,-0.2,392,-0.28,455,0.08,192,0.06,232,0.32,147,-0.26,363,"2017-18",1610612766,"CHA","1628407_2017-18","No Role Available"
201569,"Eric Gordon",1.02,58,-0.54,404,1.56,18,0.91,28,0.72,12,0.2,123,0.07,198,-0.33,383,0.4,84,-0.73,408,-0.85,467,0.12,193,-0.12,307,-0.3,417,0.18,124,1.38,54,0.49,114,0.89,63,"2016-17",1610612745,"HOU","201569_2016-17","No Role Available"
201571,"D.J. Augustin",-2.19,483,-0.6,418,-1.6,484,-1.63,485,-0.35,415,-1.28,486,-0.84,457,-0.65,449,-0.19,333,-1.53,473,-0.22,340,-1.31,473,-0.33,392,-0.08,292,-0.25,394,-3.69,486,-1.09,462,-2.59,486,"2016-17",1610612753,"ORL","201571_2016-17","No Role Available"
203079,"Dion Waiters",0.3,160,0.2,172,0.1,219,0.12,187,0.07,208,0.05,222,0.58,71,-0.07,308,0.65,40,0.26,184,0.5,88,-0.24,349,0.39,99,0.08,197,0.31,77,0.56,135,0.12,214,0.44,132,"2019-20",1610612748,"MIA","203079_2019-20","No Role Available"
1630173,"Precious Achiuwa",-0.89,472,0.27,144,-1.16,520,-0.17,334,-0.08,339,-0.08,294,-0.28,370,-0.16,347,-0.13,336,-0.58,424,-0.59,476,0.01,254,-0.22,398,0.31,74,-0.54,507,-0.99,454,0.07,226,-1.06,489,"2020-21",1610612748,"MIA","1630173_2020-21","Big, Finisher"
1628408,"PJ Dozier",0.38,146,0.21,167,0.17,182,-0.24,369,-0.63,504,0.4,78,-0.4,417,-0.22,379,-0.18,366,0.75,96,0.66,54,0.09,219,-0.17,360,0.01,287,-0.16,381,-0.13,281,-0.8,459,0.67,91,"2019-20",1610612743,"DEN","1628408_2019-20","No Role Available"
201572,"Brook Lopez",-0.9,422,-0.54,403,-0.37,354,0.54,75,0.41,64,0.13,148,0.04,210,-0.26,362,0.31,103,0.04,231,0.57,57,-0.53,401,-1.07,479,-1.09,486,0.02,222,-0.21,275,-0.15,281,-0.06,226,"2016-17",1610612751,"BKN","201572_2016-17","No Role Available"
201582,"Alexis Ajinca",-0.15,265,0.02,221,-0.18,281,-0.34,367,0.15,150,-0.5,440,-0.26,334,-0.06,272,-0.21,341,-0.68,392,-0.59,435,-0.09,285,0.05,215,-0.26,398,0.31,75,-0.61,353,0.06,208,-0.66,401,"2016-17",1610612740,"NOP","201582_2016-17","No Role Available"
201571,"D.J. Augustin",-0.57,403,-0.14,345,-0.43,407,0.44,97,0.93,8,-0.49,479,0.42,103,-0.02,271,0.44,70,-0.85,449,-0.09,315,-0.76,474,-0.1,326,-0.09,345,0.01,267,1.19,64,1.57,14,-0.38,379,"2019-20",1610612753,"ORL","201571_2019-20","No Role Available"
1628249,"Mitchell Creek",0.02,221,-0.05,289,0.07,206,0.09,199,0.12,178,-0.03,268,0.01,241,0.09,192,-0.08,312,-0.33,361,-0.48,440,0.14,180,0.16,168,0.15,145,0.01,261,0.13,205,0.16,175,-0.04,277,"2018-19",1610612751,"BKN","1628249_2018-19","No Role Available"
201572,"Brook Lopez",2.38,10,1.93,4,0.45,114,0.9,33,0.8,15,0.1,189,1.49,6,1.45,2,0.04,233,-0.61,409,0.73,49,-1.34,519,-0.3,409,-0.53,497,0.23,104,2.06,19,1.69,11,0.37,143,"2019-20",1610612749,"MIL","201572_2019-20","No Role Available"
1627884,"Derrick Jones Jr.",-0.29,344,-0.28,384,0.01,243,-0.02,257,0.4,66,-0.43,458,0.24,166,-0.08,305,0.32,111,-1.58,521,-0.85,511,-0.72,478,-0.21,395,-0.22,423,0.01,269,-0.67,408,0.02,250,-0.69,441,"2020-21",1610612757,"POR","1627884_2020-21","Big, Shooter"
1628412,"Frank Mason",-0.38,374,-0.28,401,-0.11,319,-0.21,375,-0.13,371,-0.08,322,-0.12,321,0.23,133,-0.35,447,-0.05,296,-0.45,446,0.4,117,0.48,68,0.28,88,0.2,116,0.33,162,0.14,206,0.2,171,"2017-18",1610612758,"SAC","1628412_2017-18","No Role Available"
1628365,"Markelle Fultz",-0.28,347,0.17,168,-0.45,423,0.01,246,0.46,50,-0.45,482,-0.58,451,-0.5,473,-0.08,310,0.2,187,0.27,141,-0.07,303,-0.42,449,-0.32,453,-0.09,346,-0.55,388,0.26,158,-0.81,472,"2018-19",1610612755,"PHI","1628365_2018-19","No Role Available"
1628366,"Lonzo Ball",0.48,117,1.05,18,-0.58,450,0.27,130,0.35,81,-0.08,309,0.71,48,1.03,8,-0.32,422,-0.39,379,0.28,140,-0.66,460,-0.35,421,0.02,223,-0.37,481,-0.24,318,0.83,57,-1.07,501,"2018-19",1610612747,"LAL","1628366_2018-19","No Role Available"
201577,"Robin Lopez",-0.11,284,0.61,76,-0.72,454,0.28,139,0.23,134,0.05,220,-0.49,441,0.31,97,-0.8,510,0.84,80,0.48,91,0.36,130,-1.51,529,-0.65,509,-0.85,527,-0.89,440,0.05,238,-0.95,482,"2019-20",1610612749,"MIL","201577_2019-20","No Role Available"
201580,"JaVale McGee",0.71,100,0.86,38,-0.14,310,0.79,41,0.32,102,0.47,53,-0.18,336,0.97,10,-1.15,527,0.83,83,-0.21,367,1.04,33,-0.45,456,0.04,223,-0.5,504,0.88,94,0.71,75,0.17,191,"2019-20",1610612747,"LAL","201580_2019-20","No Role Available"
1630200,"Tre Jones",-0.46,391,-0.29,386,-0.18,336,-0.82,504,-0.36,461,-0.46,468,0.7,60,0.29,111,0.4,86,-0.24,339,-0.11,322,-0.12,319,-0.09,334,-0.22,424,0.12,166,-1.07,461,-0.5,437,-0.57,420,"2020-21",1610612759,"SAS","1630200_2020-21","Wing, Playmaker"
201584,"Courtney Lee",-1.16,455,-1.67,486,0.51,88,-0.43,391,-0.46,443,0.03,186,-0.33,363,0.16,155,-0.49,418,-0.57,372,-0.64,441,0.07,214,0.48,64,-0.2,359,0.68,13,-0.7,371,-1.15,465,0.45,110,"2016-17",1610612752,"NYK","201584_2016-17","No Role Available"
201586,"Serge Ibaka",-0.27,300,-0.22,329,-0.05,227,0.34,116,0.27,96,0.07,168,-0.75,446,-0.09,292,-0.66,451,0.21,180,0.28,126,-0.07,276,-0.7,456,-0.66,479,-0.04,277,-0.28,293,0.01,232,-0.27,306,"2016-17",0,"League","201586_2016-17","No Role Available"
201587,"Nicolas Batum",0.58,97,0.17,160,0.41,99,-0.16,283,-0.32,404,0.16,139,1.34,14,0.61,50,0.73,33,-0.4,334,0.62,50,-1.02,466,0.01,246,-0.21,369,0.2,111,0.61,118,-0.35,348,0.96,55,"2016-17",1610612766,"CHA","201587_2016-17","No Role Available"
1629008,"Michael Porter Jr.",2.06,14,0.2,164,1.85,6,1.65,9,0.11,189,1.54,6,0.68,66,0.89,22,-0.21,376,0.58,112,0.13,197,0.45,112,-0.19,390,-0.21,418,0.01,261,2.59,12,0.05,237,2.54,5,"2020-21",1610612743,"DEN","1629008_2020-21","Wing, Shooter"
1628421,"Devin Robinson",0.28,154,0.12,196,0.17,157,0.01,231,0.02,244,0.01,245,-0.03,269,-0.08,324,0.05,223,0.29,163,0.14,204,0.15,195,0.15,180,0.06,200,0.08,188,0.11,218,0.06,234,0.05,216,"2017-18",1610612764,"WAS","1628421_2017-18","No Role Available"
1628368,"DeAaron Fox",-0.32,353,-0.55,463,0.24,147,0.09,198,0.12,175,-0.03,277,0.16,194,-0.2,381,0.36,83,-0.29,351,-0.61,464,0.32,126,0.83,23,0.47,40,0.36,51,0.74,101,0.51,108,0.22,158,"2018-19",1610612758,"SAC","1628368_2018-19","No Role Available"
201583,"Ryan Anderson",-0.19,317,-0.03,292,-0.15,313,0.18,165,0.03,242,0.15,161,-0.15,317,-0.05,295,-0.1,327,-0.22,325,-0.09,321,-0.13,316,-0.08,319,0.01,269,-0.09,334,0.13,206,0.03,245,0.09,221,"2019-20",1610612745,"HOU","201583_2019-20","No Role Available"
201586,"Serge Ibaka",0.25,174,0.07,228,0.18,175,0.52,75,0.42,65,0.1,193,0.11,204,0.38,77,-0.28,411,-0.26,331,-0.4,427,0.14,194,-0.61,483,-0.37,460,-0.24,424,0.33,167,0.28,179,0.05,237,"2019-20",1610612761,"TOR","201586_2019-20","No Role Available"
1628369,"Jayson Tatum",1.64,32,1.01,23,0.63,72,0.44,87,0.32,88,0.12,169,-0.31,394,0.38,95,-0.68,505,-0.16,310,0.32,129,-0.48,425,0.8,25,0.22,120,0.58,18,1.79,37,1.1,29,0.68,75,"2018-19",1610612738,"BOS","1628369_2018-19","No Role Available"
1628371,"Jonathan Isaac",0.44,124,0.64,56,-0.2,353,-0.12,328,0.02,242,-0.14,361,0.08,215,0.56,45,-0.48,471,0.28,172,0.31,131,-0.03,265,0.02,245,-0.15,366,0.17,123,0.18,191,0.2,169,-0.02,267,"2018-19",1610612753,"ORL","1628371_2018-19","No Role Available"
1628422,"Damyean Dotson",-0.6,431,0.09,211,-0.69,491,0.27,135,0.49,48,-0.22,406,-0.36,414,0.15,177,-0.51,487,-1.03,482,-0.51,455,-0.52,445,-0.18,382,0.03,232,-0.21,427,-0.46,383,0.53,98,-0.98,498,"2017-18",1610612752,"NYK","1628422_2017-18","No Role Available"
1628424,"Kobi Simmons",-1.77,530,-1.32,535,-0.45,431,-1.15,525,-0.94,533,-0.21,398,-0.18,349,0.01,267,-0.17,360,0.21,194,-0.62,483,0.84,44,-0.64,499,-0.42,488,-0.22,434,-2.23,531,-1.85,538,-0.38,398,"2017-18",1610612763,"MEM","1628424_2017-18","No Role Available"
201144,"Mike Conley",2.02,18,1.66,3,0.35,127,2.11,4,1.26,2,0.85,31,1.02,25,0.86,24,0.16,178,1.1,57,0.64,72,0.46,108,0.05,243,-0.1,346,0.15,155,3.62,4,2.25,2,1.37,43,"2020-21",1610612762,"UTA","201144_2020-21","Ball Handler, Secondary Playmaker"
201588,"George Hill",2.1,11,1.36,8,0.74,63,0.44,94,0.44,55,0.01,211,1.18,24,0.59,53,0.59,49,1.55,19,1.55,1,0.01,248,0.16,151,-0.25,396,0.41,48,1.82,32,1.15,25,0.67,81,"2016-17",1610612762,"UTA","201588_2016-17","No Role Available"
201589,"Darrell Arthur",-0.39,329,-0.06,273,-0.33,338,-0.23,315,-0.23,370,0.01,212,0.19,154,0.37,92,-0.18,328,-0.36,329,0.33,110,-0.69,424,0.06,209,-0.22,378,0.28,84,-0.43,322,-0.34,343,-0.09,235,"2016-17",1610612743,"DEN","201589_2016-17","No Role Available"
201587,"Nicolas Batum",0.2,188,0.06,232,0.13,202,0.09,204,-0.39,450,0.48,51,-0.83,494,-0.23,386,-0.6,482,-0.31,353,0.04,251,-0.35,391,0.13,190,0.05,220,0.08,195,0.11,214,-0.44,403,0.55,110,"2019-20",1610612766,"CHA","201587_2019-20","No Role Available"
201599,"DeAndre Jordan",1.57,31,0.49,86,1.08,40,1.32,14,0.59,27,0.73,30,1.25,19,0.57,57,0.68,39,1.13,38,0.7,32,0.43,111,-0.12,306,-0.45,449,0.32,67,2.31,17,0.9,47,1.42,36,"2016-17",1610612746,"LAC","201599_2016-17","No Role Available"
201588,"George Hill",2.59,7,1.3,11,1.29,22,1.64,4,0.85,12,0.79,16,0.2,170,-0.52,475,0.72,29,0.73,98,0.35,123,0.38,125,-0.1,331,-0.2,408,0.1,178,2.53,9,0.93,49,1.61,18,"2019-20",1610612749,"MIL","201588_2019-20","No Role Available"
201601,"Luc Mbah a Moute",-0.19,318,0.01,273,-0.18,330,-0.07,287,0.03,241,-0.1,330,-0.02,272,-0.02,265,0.01,258,-0.04,271,0.13,199,-0.17,330,0.02,255,0.05,217,-0.04,295,-0.09,268,0.1,225,-0.19,323,"2019-20",1610612745,"HOU","201601_2019-20","No Role Available"
201935,"James Harden",2.7,6,0.61,77,2.09,5,1.24,14,0.68,25,0.56,39,0.92,34,-0.12,333,1.03,13,0.08,228,-0.39,421,0.48,102,0.31,119,0.2,126,0.11,170,2.79,7,1.06,40,1.73,13,"2019-20",1610612745,"HOU","201935_2019-20","No Role Available"
201937,"Ricky Rubio",1.2,51,0.38,113,0.83,58,0.4,104,0.01,272,0.41,73,0.28,139,0.46,59,-0.18,369,1.1,49,1.24,7,-0.15,321,0.62,51,0.54,30,0.08,192,1.25,61,0.53,110,0.71,86,"2019-20",1610612756,"PHX","201937_2019-20","No Role Available"
201939,"Stephen Curry",0.3,158,-0.28,390,0.58,94,-0.48,437,-0.41,457,-0.07,305,-0.13,313,0.01,261,-0.12,333,0.96,66,0.33,128,0.63,77,0.02,254,-0.05,316,0.07,203,-0.47,363,-0.56,426,0.09,223,"2019-20",1610612744,"GSW","201939_2019-20","No Role Available"
201942,"DeMar DeRozan",-0.25,333,-1.01,502,0.76,70,0.5,83,0.21,148,0.29,112,-0.22,347,-0.52,477,0.31,103,-2.24,525,-1.36,521,-0.87,489,0.46,76,-0.25,424,0.71,10,0.19,192,-0.78,457,0.97,46,"2019-20",1610612759,"SAS","201942_2019-20","No Role Available"
201950,"Jrue Holiday",1.16,53,0.63,70,0.53,102,1.21,16,0.53,49,0.68,22,-0.43,426,0.22,139,-0.66,491,0.68,110,0.14,196,0.54,92,-0.28,401,0.13,172,-0.4,484,1.48,42,1.03,43,0.45,128,"2019-20",1610612740,"NOP","201950_2019-20","No Role Available"
201959,"Taj Gibson",-1.86,517,-0.42,417,-1.44,519,-1.26,521,-0.56,495,-0.69,506,-0.67,476,0.24,126,-0.91,521,0.14,214,-0.03,284,0.17,184,-0.13,339,0.01,288,-0.12,349,-2.32,521,-0.84,463,-1.49,514,"2019-20",1610612752,"NYK","201959_2019-20","No Role Available"
201960,"DeMarre Carroll",-0.14,297,0.42,102,-0.56,427,0.23,151,0.04,231,0.2,147,-0.04,275,0.2,148,-0.23,390,0.01,258,0.15,189,-0.15,322,-0.49,464,0.11,180,-0.59,513,-0.06,262,0.34,162,-0.4,381,"2019-20",1610612759,"SAS","201960_2019-20","No Role Available"
201976,"Patrick Beverley",2.03,13,1.48,8,0.55,100,0.89,36,0.55,47,0.34,95,0.07,225,-0.11,330,0.18,150,1.22,41,0.43,100,0.79,56,0.65,46,0.64,19,0.01,253,2.39,12,1.5,17,0.89,58,"2019-20",1610612746,"LAC","201976_2019-20","No Role Available"
201980,"Danny Green",1.92,16,0.73,56,1.19,27,0.6,67,-0.02,276,0.62,31,0.63,62,0.12,178,0.5,61,1.07,51,0.1,220,0.97,40,0.06,229,0.44,44,-0.39,478,1.29,58,0.5,115,0.79,72,"2019-20",1610612747,"LAL","201980_2019-20","No Role Available"
201600,"Omer Asik",-0.63,387,0.32,128,-0.95,453,-0.18,290,0.12,165,-0.3,387,0.52,77,0.56,59,-0.04,258,0.87,60,0.64,46,0.23,152,-0.24,353,-0.14,328,-0.1,314,-0.44,326,0.31,144,-0.76,412,"2016-17",1610612740,"NOP","201600_2016-17","No Role Available"
201601,"Luc Mbah a Moute",0.82,78,1.39,7,-0.58,400,1.01,22,0.52,37,0.49,56,0.02,218,0.92,17,-0.9,470,-0.48,350,-0.15,314,-0.33,352,-0.08,279,0.3,86,-0.38,437,1.25,61,1.31,20,-0.06,227,"2016-17",1610612746,"LAC","201601_2016-17","No Role Available"
201609,"Goran Dragic",-0.32,315,-0.45,384,0.13,156,0.34,121,0.11,171,0.23,114,0.47,93,-0.06,276,0.53,56,-0.56,370,-1.07,477,0.51,85,-0.12,308,-0.11,308,0.01,258,0.27,158,-0.42,367,0.69,75,"2016-17",1610612748,"MIA","201609_2016-17","No Role Available"
201988,"Patty Mills",1.57,29,0.16,183,1.41,18,0.23,153,-0.22,392,0.45,63,0.44,96,-0.06,304,0.5,60,-0.3,348,-0.26,384,-0.04,271,0.69,39,0.19,137,0.5,33,1.52,41,-0.24,342,1.76,12,"2019-20",1610612759,"SAS","201988_2019-20","No Role Available"
202083,"Wesley Matthews",1.67,20,2.07,2,-0.4,399,1.26,11,1.35,2,-0.09,324,0.73,49,1.11,8,-0.38,448,-0.73,433,1.13,11,-1.85,528,0.38,100,-0.09,346,0.47,40,2.33,13,2.58,2,-0.25,338,"2019-20",1610612749,"MIL","202083_2019-20","No Role Available"
202329,"Al-Farouq Aminu",-0.54,400,0.25,153,-0.79,470,-0.44,434,0.41,71,-0.85,521,0.29,135,0.01,243,0.28,112,1.11,48,0.74,45,0.37,126,-0.26,395,0.07,205,-0.33,457,-0.6,396,0.79,63,-1.4,510,"2019-20",1610612753,"ORL","202329_2019-20","No Role Available"
201628,"Bobby Brown",-0.73,401,-0.45,385,-0.28,324,0.01,212,0.03,212,-0.02,221,-0.88,461,-0.5,416,-0.39,397,-0.77,416,-0.52,422,-0.25,329,-0.27,375,-0.23,382,-0.04,275,-0.55,346,-0.34,347,-0.2,287,"2016-17",1610612745,"HOU","201628_2016-17","No Role Available"
201937,"Ricky Rubio",0.58,98,-0.2,326,0.78,59,-0.27,331,-0.11,307,-0.17,324,0.93,33,0.03,227,0.9,20,0.09,218,-0.13,304,0.22,155,0.38,88,-0.03,254,0.42,45,0.21,169,-0.22,304,0.44,114,"2016-17",1610612750,"MIN","201937_2016-17","No Role Available"
201939,"Stephen Curry",4.72,1,0.97,22,3.75,1,2.88,1,0.24,107,2.64,1,-0.13,278,0.08,191,-0.22,344,0.43,124,0.49,74,-0.06,271,0.74,33,0.73,10,0.01,236,5.33,1,1.05,34,4.28,1,"2016-17",1610612744,"GSW","201939_2016-17","No Role Available"
201941,"Jordan Hill",0.09,190,0.04,215,0.05,183,0.07,188,0.13,158,-0.05,248,-0.13,279,-0.22,350,0.09,197,0.03,235,-0.11,293,0.14,179,0.09,185,0.08,164,0.01,234,0.18,177,0.16,177,0.02,200,"2016-17",1610612750,"MIN","201941_2016-17","No Role Available"
201942,"DeMar DeRozan",0.12,182,-0.62,424,0.74,65,0.16,162,0.2,126,-0.04,235,0.91,34,-0.42,405,1.33,3,-0.8,421,-0.77,461,-0.03,262,0.05,213,-0.49,459,0.54,25,0.58,124,-0.41,365,1,53,"2016-17",1610612761,"TOR","201942_2016-17","No Role Available"
201943,"Brandon Jennings",-0.11,248,-0.77,444,0.66,74,0.25,138,0.12,166,0.13,150,-0.33,360,-0.46,409,0.14,168,-0.64,386,-0.51,420,-0.13,295,-0.04,263,-0.07,281,0.03,216,0.23,164,-0.18,290,0.41,121,"2016-17",0,"League","201943_2016-17","No Role Available"
201945,"Gerald Henderson",-1.5,471,-0.32,358,-1.17,469,-1.46,481,-0.89,482,-0.57,456,-0.23,318,-0.13,315,-0.09,281,0.22,175,0.03,227,0.19,159,-0.09,290,0.34,73,-0.43,444,-2.29,479,-1.08,461,-1.21,457,"2016-17",1610612755,"PHI","201945_2016-17","No Role Available"
1629667,"Jalen McDaniels",-0.39,374,-0.42,435,0.02,238,-1.2,524,-0.71,526,-0.49,473,-0.34,392,0.04,223,-0.38,446,-0.39,383,-0.54,467,0.15,198,-0.03,292,0.02,250,-0.05,314,-2.22,524,-1.2,517,-1.02,481,"2020-21",1610612766,"CHA","1629667_2020-21","Wing, Shooter"
1628372,"Dennis Smith Jr.",-0.47,393,-0.29,388,-0.18,339,0.81,50,0.61,25,0.2,149,-0.72,485,-0.18,363,-0.54,488,-0.82,463,-0.85,510,0.04,235,-0.5,480,-0.31,465,-0.19,410,0.31,174,0.45,119,-0.14,292,"2020-21",1610612752,"NYK","1628372_2020-21","Ball Handler, Primary Playmaker"
1628513,"Naz Mitrou-Long",0.2,186,0.24,159,-0.03,263,0.17,167,0.2,151,-0.03,270,0.1,207,0.05,218,0.05,220,0.41,154,0.33,129,0.08,226,0.01,263,-0.06,325,0.07,202,0.44,149,0.43,140,0.02,245,"2019-20",1610612754,"IND","1628513_2019-20","No Role Available"
1629164,"Brandon Goodwin",-0.09,271,0.22,162,-0.3,379,-0.49,441,0.09,197,-0.58,497,0.67,68,0.05,217,0.61,43,1.05,58,0.79,44,0.26,167,-0.15,365,-0.33,471,0.19,136,-0.51,373,0.08,221,-0.59,427,"2020-21",1610612737,"ATL","1629164_2020-21","Wing, Playmaker"
1630211,"Karim Mane",-0.44,383,-0.31,394,-0.13,320,-0.25,367,-0.1,352,-0.15,341,-0.14,320,-0.03,269,-0.11,326,0.19,198,0.2,175,0.01,264,0.06,235,0.01,267,0.06,221,-0.34,346,-0.18,342,-0.16,303,"2020-21",1610612753,"ORL","1630211_2020-21","Ball Handler, Primary Playmaker"
202330,"Gordon Hayward",1.33,44,0.93,32,0.41,126,1.56,6,0.64,34,0.93,8,-0.92,506,-0.48,467,-0.44,460,-0.55,401,-0.23,375,-0.32,382,0.42,91,0.23,112,0.19,121,2.57,8,1.02,44,1.55,20,"2019-20",1610612738,"BOS","202330_2019-20","No Role Available"
201937,"Ricky Rubio",0.2,189,-0.26,379,0.46,110,-0.72,489,-0.21,407,-0.51,478,0.3,149,-0.07,296,0.36,97,0.24,181,-0.33,405,0.57,84,0.12,195,0.08,196,0.03,240,-0.76,424,-0.37,401,-0.4,383,"2020-21",1610612750,"MIN","201937_2020-21","Wing, Playmaker"
1628380,"Zach Collins",-0.62,426,-0.07,309,-0.55,446,0.85,34,0.65,18,0.2,123,-0.3,391,0.01,260,-0.3,412,-1.63,510,-1.17,513,-0.46,421,-0.94,523,-0.55,513,-0.38,483,0.06,222,0.1,197,-0.03,274,"2018-19",1610612757,"POR","1628380_2018-19","No Role Available"
201949,"James Johnson",1.43,36,1.28,12,0.15,150,0.89,34,0.58,28,0.3,96,0.41,103,-0.06,275,0.47,70,0.18,183,0.64,45,-0.46,384,0.47,67,0.34,72,0.13,151,1.54,44,1.29,21,0.25,142,"2016-17",1610612748,"MIA","201949_2016-17","No Role Available"
201950,"Jrue Holiday",0.5,107,0.55,76,-0.04,223,0.4,101,0.68,15,-0.28,379,0.34,114,0.43,81,-0.09,278,-0.69,398,0.02,236,-0.71,430,0.14,160,0.02,211,0.12,162,0.8,95,1.53,14,-0.73,407,"2016-17",1610612740,"NOP","201950_2016-17","No Role Available"
201951,"Ty Lawson",-0.37,327,-0.28,347,-0.1,240,0.45,92,0.26,97,0.19,131,-0.31,354,-0.58,434,0.27,113,-0.51,362,-0.31,367,-0.2,315,-0.03,257,0.03,201,-0.06,291,0.01,213,-0.19,294,0.21,150,"2016-17",1610612758,"SAC","201951_2016-17","No Role Available"
1628970,"Miles Bridges",-2.19,526,-2,528,-0.19,333,-0.62,474,-0.35,438,-0.27,421,-0.67,478,0.31,99,-0.98,522,0.33,169,-0.35,412,0.68,69,-0.86,512,-0.68,512,-0.18,386,-2.04,517,-1.24,501,-0.8,460,"2019-20",1610612766,"CHA","1628970_2019-20","No Role Available"
1628971,"Bruce Brown",-1.37,502,-0.2,361,-1.18,506,-0.11,302,0.13,178,-0.24,408,0.5,84,0.29,112,0.21,137,-0.08,285,-0.49,448,0.41,114,-0.57,481,-0.12,362,-0.46,497,-0.8,425,0.09,228,-0.89,472,"2019-20",1610612765,"DET","1628971_2019-20","No Role Available"
1628972,"Troy Brown Jr.",-0.99,464,-1.17,517,0.17,181,-0.88,503,-0.59,499,-0.28,427,0.03,242,-0.39,446,0.43,72,-0.97,468,-0.61,468,-0.37,393,0.69,38,0.25,98,0.44,48,-1.34,482,-1.26,503,-0.07,278,"2019-20",1610612764,"WAS","1628972_2019-20","No Role Available"
202331,"Paul George",1.31,47,0.73,55,0.58,96,1.03,24,0.3,106,0.73,17,0.26,147,0.43,66,-0.18,367,-0.72,430,-0.44,443,-0.28,371,0.08,205,0.1,185,-0.02,274,1.85,26,0.68,79,1.17,41,"2019-20",1610612746,"LAC","202331_2019-20","No Role Available"
201956,"Omri Casspi",0.3,139,0.24,145,0.07,177,-0.79,458,-0.59,461,-0.2,344,0.1,190,0.01,237,0.09,196,0.46,117,-0.35,385,0.81,42,-0.29,384,0.3,88,-0.59,471,-0.96,403,-0.81,429,-0.15,259,"2016-17",0,"League","201956_2016-17","No Role Available"
201959,"Taj Gibson",1.28,47,0.94,26,0.34,113,-0.5,417,0.1,173,-0.6,459,0.99,28,0.64,46,0.35,96,2.72,1,0.93,19,1.79,5,-0.33,393,-0.12,313,-0.22,383,0.38,144,0.65,85,-0.27,305,"2016-17",0,"League","201959_2016-17","No Role Available"
203909,"KJ McDaniels",-0.65,389,-0.45,387,-0.19,289,-0.18,287,-0.14,329,-0.04,234,-0.52,412,-0.61,440,0.09,198,-0.45,346,-0.8,463,0.35,127,-0.52,432,-0.16,344,-0.36,433,-0.81,387,-0.63,403,-0.18,278,"2016-17",0,"League","203909_2016-17","No Role Available"
1628379,"Luke Kennard",-1.4,511,-1.36,535,-0.04,267,-0.27,377,-0.75,528,0.48,77,-0.64,470,-0.28,408,-0.37,441,-0.89,468,-0.79,504,-0.1,297,-0.53,487,-0.81,531,0.27,93,-1.3,489,-2.2,539,0.91,71,"2020-21",1610612746,"LAC","1628379_2020-21","Wing, Shooter"
1628381,"John Collins",0.94,75,-0.47,453,1.41,18,0.88,36,0.43,59,0.45,85,0.47,105,0.35,98,0.11,200,1.11,53,-0.35,409,1.46,15,-0.38,450,-0.43,496,0.05,228,1.64,45,0.08,219,1.56,35,"2020-21",1610612737,"ATL","1628381_2020-21","Big, Shooter"
1628384,"OG Anunoby",0.32,167,0.67,62,-0.36,388,0.98,27,0.45,54,0.53,69,-0.31,382,0.09,196,-0.4,451,-1.99,533,-0.98,520,-1.02,512,0.49,67,0.57,28,-0.08,345,1.46,58,1.05,36,0.41,150,"2020-21",1610612761,"TOR","1628384_2020-21","Wing, Shooter"
203912,"CJ Wilcox",-0.35,322,-0.19,324,-0.16,269,-0.22,309,0.01,250,-0.22,352,-0.22,316,0.01,243,-0.22,345,0.35,137,-0.21,335,0.55,78,0.04,217,0.07,168,-0.03,272,-0.11,252,0.05,211,-0.17,272,"2016-17",1610612753,"ORL","203912_2016-17","No Role Available"
202334,"Ed Davis",-0.87,449,0.32,130,-1.19,509,-0.79,497,-0.34,436,-0.45,471,-0.47,438,-0.24,388,-0.23,391,-0.33,356,-0.03,286,-0.3,377,-0.02,281,0.19,136,-0.21,404,-1.42,489,-0.3,359,-1.12,497,"2019-20",1610612762,"UTA","202334_2019-20","No Role Available"
201960,"DeMarre Carroll",1.33,45,0.52,80,0.81,56,0.32,124,0.3,90,0.02,190,0.29,138,0.12,166,0.16,158,-0.32,322,-0.91,469,0.59,68,0.27,118,0.17,133,0.11,172,0.95,78,0.31,145,0.64,83,"2016-17",1610612761,"TOR","201960_2016-17","No Role Available"
201961,"Wayne Ellington",0.37,127,-0.15,306,0.52,87,0.23,141,0.03,220,0.2,120,-1.12,471,-0.33,380,-0.8,465,-0.21,302,-0.35,386,0.14,175,0.65,43,0.31,82,0.34,60,0.44,137,0.08,200,0.36,125,"2016-17",1610612748,"MIA","201961_2016-17","No Role Available"
201962,"Toney Douglas",0.6,94,0.02,226,0.59,82,-0.33,364,-0.21,360,-0.12,284,0.01,225,-0.52,423,0.52,60,1.74,15,0.63,49,1.11,26,0.01,234,0.01,226,0.01,238,0.01,222,-0.22,305,0.21,149,"2016-17",1610612763,"MEM","201962_2016-17","No Role Available"
202339,"Eric Bledsoe",1,65,0.77,48,0.23,166,0.92,32,0.56,46,0.37,90,0.26,146,-0.07,309,0.33,95,-0.29,345,0.75,44,-1.05,502,-0.18,362,-0.42,474,0.24,99,1.18,65,0.81,60,0.37,146,"2019-20",1610612749,"MIL","202339_2019-20","No Role Available"
202355,"Hassan Whiteside",2.01,14,1.21,15,0.8,60,0.74,46,0.38,79,0.36,91,0.84,40,0.85,18,0.01,269,0.79,87,0.36,117,0.43,110,-0.39,440,-0.6,505,0.2,114,1.63,36,0.36,157,1.27,31,"2019-20",1610612757,"POR","202355_2019-20","No Role Available"
201967,"Dante Cunningham",-0.59,376,-0.19,325,-0.39,363,0.01,225,-0.34,410,0.33,85,-0.26,332,0.43,83,-0.69,454,-0.72,405,0.2,150,-0.93,457,0.03,220,-0.14,329,0.18,126,-0.16,262,-0.35,350,0.19,153,"2016-17",1610612740,"NOP","201967_2016-17","No Role Available"
201954,"Darren Collison",-0.16,309,-0.16,363,0.01,243,0.03,217,-0.89,532,0.92,12,-0.05,289,0.33,97,-0.38,452,-1.51,521,-0.57,470,-0.94,508,0.89,17,0.59,26,0.3,77,0.55,129,-0.64,464,1.18,32,"2017-18",1610612754,"IND","201954_2017-18","No Role Available"
1628382,"Justin Jackson",-0.31,352,-0.41,432,0.1,188,0.15,172,0.28,106,-0.13,359,-0.54,443,-0.05,303,-0.49,473,-0.95,465,-0.4,426,-0.55,436,0.45,68,-0.14,361,0.59,13,0.16,196,0.36,135,-0.2,331,"2018-19",1610612758,"SAC","1628382_2018-19","No Role Available"
202357,"Nemanja Bjelica",0.21,184,-0.51,437,0.73,74,0.54,73,-0.13,348,0.67,24,-0.87,497,0.24,128,-1.11,525,0.48,142,0.22,156,0.26,159,0.18,165,0.02,254,0.16,135,0.39,157,-0.19,329,0.58,105,"2019-20",1610612758,"SAC","202357_2019-20","No Role Available"
1630216,"Cassius Winston",-0.31,349,-0.16,338,-0.15,326,-0.26,374,0.05,229,-0.31,426,0.11,220,0.03,230,0.08,229,-0.35,369,0.17,186,-0.51,432,-0.33,439,-0.4,489,0.07,208,-0.77,425,-0.27,366,-0.5,402,"2020-21",1610612764,"WAS","1630216_2020-21","Wing, Playmaker"
202397,"Ish Smith",-0.35,365,-0.81,477,0.46,112,-0.72,490,-0.24,396,-0.48,477,-0.68,479,-0.42,456,-0.25,399,-0.65,420,-0.83,494,0.17,181,0.77,21,-0.02,295,0.79,7,-0.62,401,-0.71,450,0.09,226,"2019-20",1610612764,"WAS","202397_2019-20","No Role Available"
202498,"Lance Thomas",-0.25,339,-0.41,416,0.16,190,-0.59,467,-0.55,492,-0.04,279,0.06,232,0.23,134,-0.17,359,0.35,166,0.41,108,-0.07,279,-0.1,325,-0.23,420,0.14,153,-0.74,421,-0.87,468,0.12,209,"2019-20",1610612751,"BKN","202498_2019-20","No Role Available"
202681,"Kyrie Irving",-0.4,373,-0.69,460,0.29,155,0.06,224,-0.54,488,0.6,34,0.08,218,0.37,81,-0.3,418,0.22,199,0.47,92,-0.25,356,-0.26,394,-0.1,355,-0.15,376,-0.22,311,-0.89,473,0.67,92,"2019-20",1610612751,"BKN","202681_2019-20","No Role Available"
1629605,"Tacko Fall",0.59,109,0.33,128,0.26,149,0.44,107,0.08,213,0.36,101,-0.06,290,0.04,222,-0.1,325,0.29,173,0.09,220,0.21,183,0.14,178,0.03,238,0.12,171,0.66,133,0.1,210,0.56,118,"2020-21",1610612738,"BOS","1629605_2020-21","Big, Finisher"
201942,"DeMar DeRozan",-0.27,333,-1.2,528,0.93,46,-0.99,515,-0.8,529,-0.18,359,0.78,47,-0.27,399,1.04,11,-0.07,285,0.18,180,-0.26,367,-0.11,343,-0.88,537,0.78,7,-0.85,436,-1.91,537,1.07,57,"2020-21",1610612759,"SAS","201942_2020-21","Ball Handler, Primary Playmaker"
1628385,"Harry Giles III",-1.24,490,-1,501,-0.23,350,-0.61,472,-0.75,514,0.14,166,-1.78,529,-0.91,525,-0.87,517,-0.97,467,-0.19,359,-0.78,477,0.73,32,0.49,36,0.24,102,-1.28,478,-1.1,490,-0.18,320,"2019-20",1610612758,"SAC","1628385_2019-20","No Role Available"
202683,"Enes Kanter",-0.46,386,-0.6,450,0.14,198,0.68,58,0.29,110,0.38,85,0.21,160,0.48,56,-0.26,406,2.33,5,0.61,64,1.72,6,-0.54,473,-0.45,478,-0.09,336,1.38,50,0.5,113,0.88,60,"2019-20",1610612738,"BOS","202683_2019-20","No Role Available"
202684,"Tristan Thompson",-1.05,472,-0.59,449,-0.46,411,-0.83,499,-0.4,451,-0.43,469,1.21,16,1.38,3,-0.17,358,1.69,20,0.52,80,1.17,23,-0.99,519,-0.6,506,-0.39,482,-1.5,498,-0.6,433,-0.9,473,"2019-20",1610612739,"CLE","202684_2019-20","No Role Available"
202722,"Davis Bertans",0.28,167,-0.48,429,0.76,67,0.62,64,-0.25,399,0.87,11,-0.61,467,-0.51,472,-0.09,325,-1.9,517,-0.88,499,-1.02,498,0.22,145,-0.03,306,0.26,96,0.68,119,-0.93,479,1.61,17,"2019-20",1610612764,"WAS","202722_2019-20","No Role Available"
202738,"Isaiah Thomas",-1.46,505,-1.08,508,-0.38,393,-0.71,489,-0.77,515,0.05,217,-0.27,369,0.01,253,-0.27,407,-0.22,324,-0.29,395,0.06,233,-0.53,471,-0.4,467,-0.13,362,-1.97,513,-1.8,521,-0.17,313,"2019-20",1610612764,"WAS","202738_2019-20","No Role Available"
202951,"Jeremy Pargo",-0.2,323,-0.13,339,-0.08,281,0.04,236,0.01,266,0.04,223,-0.02,268,-0.08,319,0.06,214,-0.25,328,0.01,273,-0.24,350,0.06,226,0.03,237,0.03,236,0.06,230,-0.03,277,0.09,225,"2019-20",1610612744,"GSW","202951_2019-20","No Role Available"
201973,"Jonas Jerebko",-0.29,306,-0.7,436,0.41,98,0.09,182,-0.23,368,0.31,91,-0.77,449,-0.26,359,-0.51,424,0.27,162,-0.06,272,0.33,134,0.21,137,0.01,215,0.19,115,0.46,136,-0.42,369,0.88,64,"2016-17",1610612738,"BOS","201973_2016-17","No Role Available"
1629744,"Matt Thomas",-0.74,448,-0.37,423,-0.37,395,-0.4,420,0.01,269,-0.39,447,-0.85,501,-0.49,477,-0.36,436,-0.61,432,-0.22,360,-0.39,402,-0.14,361,0.12,172,-0.27,450,-1.1,467,-0.11,312,-0.99,477,"2020-21",1610612761,"TOR","1629744_2020-21","Wing, Shooter"
201975,"Jodie Meeks",-0.63,386,-0.61,421,-0.02,214,-0.23,312,-0.64,469,0.42,65,-0.4,382,-0.02,256,-0.38,396,-0.88,431,-0.28,360,-0.6,406,0.26,126,0.18,124,0.07,190,-0.43,323,-0.94,446,0.51,102,"2016-17",1610612753,"ORL","201975_2016-17","No Role Available"
202954,"Brad Wanamaker",-0.3,350,-0.63,453,0.33,149,0.49,87,0.47,58,0.02,242,-0.52,447,-0.85,520,0.33,91,-0.61,413,-0.69,477,0.08,224,-0.21,383,-0.19,405,-0.02,276,0.24,181,-0.04,284,0.28,163,"2019-20",1610612738,"BOS","202954_2019-20","No Role Available"
1628385,"Harry Giles III",-1.24,501,-0.43,437,-0.82,496,0.19,177,0.47,51,-0.28,408,-1.04,520,-0.64,510,-0.4,453,-0.39,381,0.28,157,-0.66,473,-0.37,446,-0.34,473,-0.03,298,-0.6,394,0.17,194,-0.78,457,"2020-21",1610612757,"POR","1628385_2020-21","Big, Playmaker"
203076,"Anthony Davis",1.16,54,0.73,54,0.42,121,0.13,183,0.17,163,-0.04,275,1.25,11,0.12,181,1.13,8,0.76,94,1.05,17,-0.3,375,0.04,234,0.28,87,-0.24,423,0.6,130,0.55,105,0.05,240,"2019-20",1610612747,"LAL","203076_2019-20","No Role Available"
201976,"Patrick Beverley",2.01,13,0.46,92,1.56,20,0.72,47,-0.02,264,0.75,28,0.35,111,0.62,49,-0.26,359,0.52,113,-0.35,382,0.86,35,0.99,7,0.82,6,0.17,131,2.21,19,0.83,55,1.38,38,"2016-17",1610612745,"HOU","201976_2016-17","No Role Available"
201977,"Marcus Thornton",-1.07,439,-0.75,441,-0.32,336,-1.25,478,-0.98,484,-0.27,374,-0.31,352,-0.34,389,0.03,222,0.33,142,-0.38,396,0.71,47,0.1,182,0.13,145,-0.04,273,-2.06,473,-1.7,484,-0.36,327,"2016-17",1610612764,"WAS","201977_2016-17","No Role Available"
202087,"Alonzo Gee",-0.06,233,0.01,229,-0.08,234,0.1,179,0.12,161,-0.03,225,-0.32,355,-0.58,433,0.27,115,-0.12,280,-0.13,307,0.02,238,0.05,214,-0.05,271,0.1,176,-0.07,236,-0.09,263,0.03,196,"2016-17",1610612743,"DEN","202087_2016-17","No Role Available"
202322,"John Wall",0.89,69,-0.52,402,1.41,26,0.57,69,-0.3,395,0.88,17,-0.22,317,-0.88,470,0.65,42,-0.14,286,-0.55,428,0.41,117,0.69,36,0.4,57,0.29,78,1.53,46,-0.4,361,1.92,17,"2016-17",1610612764,"WAS","202322_2016-17","No Role Available"
203081,"Damian Lillard",1.41,35,-0.7,462,2.12,3,0.88,37,-0.12,334,1,3,-0.24,357,-0.82,518,0.58,51,-1.17,483,-1.2,513,0.03,242,0.01,276,-0.44,476,0.43,51,1.43,46,-1.24,500,2.67,2,"2019-20",1610612757,"POR","203081_2019-20","No Role Available"
202324,"Derrick Favors",-0.21,289,0.68,54,-0.89,450,0.01,211,0.01,252,0.02,192,-0.47,395,0.63,48,-1.1,482,0.89,55,0.75,27,0.14,181,-0.25,362,0.08,160,-0.33,425,0.17,179,0.68,75,-0.51,371,"2016-17",1610612762,"UTA","202324_2016-17","No Role Available"
203082,"Terrence Ross",-0.52,394,-0.41,415,-0.11,296,-1.17,515,-0.19,376,-0.98,526,-0.57,457,-0.9,524,0.33,88,0.03,248,-0.32,406,0.35,134,0.13,185,-0.1,354,0.24,103,-1.44,490,-0.7,449,-0.74,447,"2019-20",1610612753,"ORL","203082_2019-20","No Role Available"
202325,"Wesley Johnson",0.53,102,0.89,31,-0.36,348,-0.12,268,0.32,82,-0.45,433,-0.46,393,0.09,187,-0.55,431,-0.17,296,0.69,33,-0.86,450,0.6,53,0.25,107,0.35,57,0.01,221,0.88,50,-0.89,434,"2016-17",1610612746,"LAC","202325_2016-17","No Role Available"
203084,"Harrison Barnes",0.23,179,0.01,264,0.22,168,-0.36,409,-0.48,475,0.11,178,1.15,20,0.78,26,0.37,79,-0.31,351,0.08,228,-0.39,398,-0.18,361,-0.16,386,0.01,271,-0.31,338,-0.45,406,0.14,200,"2019-20",1610612758,"SAC","203084_2019-20","No Role Available"
203496,"Robert Covington",1.36,40,0.84,41,0.52,102,0.6,69,-0.3,444,0.9,20,0.08,236,0.73,33,-0.65,505,1.47,26,1,24,0.47,106,0.5,62,0.4,58,0.11,178,1.81,35,0.11,208,1.7,29,"2020-21",1610612757,"POR","203496_2020-21","Wing, Shooter"
203085,"Austin Rivers",-0.53,395,-1.11,510,0.58,95,-0.2,350,-0.6,502,0.4,74,-0.54,454,-0.63,497,0.09,203,-1.3,493,-0.43,442,-0.86,488,0.5,63,0.07,203,0.43,50,0.11,211,-1.2,498,1.31,29,"2019-20",1610612745,"HOU","203085_2019-20","No Role Available"
203086,"Meyers Leonard",0.14,206,0.22,165,-0.09,284,0.51,76,0.29,114,0.23,132,-0.34,401,0.39,73,-0.74,504,-0.16,303,0.52,81,-0.68,456,-0.33,421,0.03,242,-0.36,469,0.3,174,0.59,98,-0.29,353,"2019-20",1610612748,"MIA","203086_2019-20","No Role Available"
203089,"John Henson",-0.06,263,0.62,73,-0.67,444,0.42,101,0.27,119,0.16,159,-0.2,341,0.42,71,-0.61,486,0.61,119,0.62,62,0.01,255,-0.33,422,0.2,131,-0.53,506,0.13,202,0.66,87,-0.53,407,"2019-20",1610612739,"CLE","203089_2019-20","No Role Available"
202326,"DeMarcus Cousins",0.51,105,-0.06,269,0.57,85,-0.33,363,-0.74,474,0.41,67,1.68,5,0.21,137,1.47,2,0.14,199,-0.02,255,0.16,168,0.32,106,0.47,43,-0.15,347,0.65,113,-0.34,345,0.99,54,"2016-17",0,"League","202326_2016-17","No Role Available"
202389,"Timofey Mozgov",-0.6,432,0.24,136,-0.84,509,-0.31,409,0.02,237,-0.33,457,0.56,64,0.73,27,-0.17,355,0.38,138,0.81,31,-0.42,430,-0.74,512,0.01,258,-0.74,533,-1,457,0.27,162,-1.27,520,"2017-18",1610612751,"BKN","202389_2017-18","No Role Available"
202397,"Ish Smith",0.11,200,0.01,286,0.13,174,0.51,88,0.34,85,0.17,143,-0.24,372,0.19,148,-0.43,469,0.2,197,0.6,59,-0.4,423,0.29,113,-0.21,426,0.5,22,0.54,133,0.24,175,0.3,143,"2017-18",1610612765,"DET","202397_2017-18","No Role Available"
1628383,"Justin Patton",0.01,231,0.01,260,0.01,242,-0.07,305,0.01,284,-0.06,300,0.13,198,0.03,232,0.11,181,0.03,237,-0.09,328,0.12,192,0.11,193,0.06,197,0.05,217,0.01,239,0.04,230,-0.03,272,"2018-19",1610612755,"PHI","1628383_2018-19","No Role Available"
1628384,"OG Anunoby",-0.82,448,-0.4,429,-0.42,414,-0.78,488,-0.39,460,-0.39,466,-0.85,493,-0.47,468,-0.38,446,0.37,153,0.47,88,-0.1,315,0.2,148,0.45,46,-0.25,440,-1.41,491,-0.54,439,-0.87,482,"2018-19",1610612761,"TOR","1628384_2018-19","No Role Available"
1628385,"Harry Giles III",-0.87,456,-0.59,468,-0.28,374,0.17,163,0.16,153,0.01,232,-1.18,521,-0.97,517,-0.21,376,-0.22,329,0.18,183,-0.4,410,-0.37,425,-0.15,368,-0.21,415,-0.79,425,-0.19,348,-0.6,434,"2018-19",1610612758,"SAC","1628385_2018-19","No Role Available"
1629140,"Johnathan Williams",-0.86,447,-0.21,364,-0.66,440,-0.16,327,0.02,248,-0.18,380,-0.26,362,-0.18,362,-0.09,317,1.34,36,0.21,166,1.14,27,-0.56,478,-0.21,411,-0.35,467,-0.44,360,-0.08,295,-0.37,377,"2019-20",1610612764,"WAS","1629140_2019-20","No Role Available"
1629346,"Alen Smailagic",0.16,199,0.17,180,0.01,255,0.37,113,0.09,199,0.28,115,0.42,102,0.38,76,0.04,237,-0.44,383,-0.56,462,0.12,204,-0.43,450,-0.05,322,-0.37,473,0.23,183,0.01,265,0.23,171,"2019-20",1610612744,"GSW","1629346_2019-20","No Role Available"
1629611,"Terance Mann",-0.04,259,0.43,100,-0.47,413,-0.16,326,0.14,173,-0.3,429,-0.44,428,-0.54,482,0.09,201,-0.61,410,-0.07,306,-0.54,429,0.26,131,0.15,157,0.11,176,-0.31,339,0.13,209,-0.45,395,"2019-20",1610612746,"LAC","1629611_2019-20","No Role Available"
203092,"Tyler Zeller",0.08,221,0.04,252,0.04,236,0.01,255,0.02,250,0.01,257,-0.08,297,-0.07,312,0.01,263,0.18,207,0.03,254,0.14,195,0.06,222,0.03,243,0.03,231,0.06,231,0.04,243,0.02,244,"2019-20",1610612759,"SAS","203092_2019-20","No Role Available"
203460,"Andre Roberson",-0.16,302,0.4,107,-0.56,426,0.06,222,0.26,124,-0.2,388,-0.34,403,-0.19,373,-0.15,350,0.62,117,0.32,132,0.29,149,-0.05,304,0.23,110,-0.28,440,0.14,201,0.61,94,-0.47,397,"2019-20",1610612760,"OKC","203460_2019-20","No Role Available"
203469,"Cody Zeller",-2.09,522,-0.91,490,-1.19,508,-1.36,526,-1.02,524,-0.34,447,0.62,63,0.86,16,-0.24,393,0.76,95,-0.27,391,1.03,34,-0.33,419,0.01,268,-0.33,461,-1.76,506,-1.15,494,-0.61,423,"2019-20",1610612766,"CHA","203469_2019-20","No Role Available"
203471,"Dennis Schroder",0.92,75,1.26,12,-0.34,381,1,26,1.13,3,-0.13,351,1.46,7,0.34,88,1.12,9,-1.47,506,-0.12,336,-1.35,520,0.34,110,0.38,57,-0.04,300,1.96,21,2.28,3,-0.32,365,"2019-20",1610612760,"OKC","203471_2019-20","No Role Available"
203476,"Gorgui Dieng",-0.93,459,0.79,46,-1.71,527,-0.19,343,0.85,13,-1.04,529,-0.27,366,0.08,200,-0.35,439,0.25,188,-0.14,342,0.39,117,-0.08,315,0.39,55,-0.47,501,-0.73,419,1.53,15,-2.27,528,"2019-20",1610612750,"MIN","203476_2019-20","No Role Available"
202328,"Greg Monroe",0.82,75,-0.02,248,0.84,53,0.49,83,-0.49,447,0.98,15,0.11,184,-0.09,290,0.19,148,0.5,114,0.35,103,0.15,172,0.46,71,0.47,41,0.01,253,1.29,60,-0.23,308,1.51,31,"2016-17",1610612749,"MIL","202328_2016-17","No Role Available"
202329,"Al-Farouq Aminu",-0.28,302,0.34,120,-0.62,408,0.64,55,0.56,32,0.08,163,0.75,47,0.47,71,0.28,110,-1.28,461,0.32,111,-1.61,480,0.16,149,-0.22,376,0.38,51,0.74,101,0.85,53,-0.11,243,"2016-17",1610612757,"POR","202329_2016-17","No Role Available"
202330,"Gordon Hayward",1.8,18,0.75,45,1.05,42,0.89,32,0.54,33,0.36,79,1.25,20,0.27,117,0.98,12,0.21,179,0.11,187,0.1,203,-0.23,348,-0.38,440,0.15,137,2.07,20,0.91,46,1.16,47,"2016-17",1610612762,"UTA","202330_2016-17","No Role Available"
203516,"James Ennis III",-0.2,321,-0.96,497,0.76,68,0.11,194,-0.37,445,0.47,52,-0.27,365,-0.36,436,0.09,199,1.27,39,0.12,210,1.15,25,-0.24,390,-0.21,412,-0.04,290,0.04,240,-0.87,470,0.91,54,"2019-20",1610612755,"PHI","203516_2019-20","No Role Available"
203524,"Solomon Hill",-0.84,441,-0.6,452,-0.24,352,-0.11,303,-0.54,489,0.43,66,-0.69,481,-0.38,441,-0.31,424,-1.2,487,-0.94,504,-0.26,359,0.04,233,0.2,123,-0.16,380,-0.67,409,-1.11,491,0.44,131,"2019-20",1610612763,"MEM","203524_2019-20","No Role Available"
202331,"Paul George",1.44,35,0.56,71,0.88,52,0.63,57,0.01,228,0.62,42,-0.14,282,-0.34,388,0.2,145,-0.33,326,0.1,193,-0.43,378,0.69,39,0.24,111,0.44,35,1.72,36,0.29,151,1.43,35,"2016-17",1610612754,"IND","202331_2016-17","No Role Available"
202332,"Cole Aldrich",-0.32,316,-0.43,381,0.1,161,0.01,215,-0.31,401,0.32,88,-0.12,274,0.24,124,-0.36,394,0.99,49,0.29,121,0.7,51,0.06,208,0.18,123,-0.13,340,-0.03,226,-0.32,338,0.29,132,"2016-17",1610612750,"MIN","202332_2016-17","No Role Available"
202334,"Ed Davis",-0.91,423,-0.14,298,-0.77,437,-0.48,411,-0.06,288,-0.41,423,-0.83,456,-0.95,473,0.12,180,1.26,30,0.46,80,0.8,44,-0.88,473,-0.57,469,-0.31,415,-1.3,446,-0.81,427,-0.49,366,"2016-17",1610612757,"POR","202334_2016-17","No Role Available"
1628389,"Bam Adebayo",0.32,142,0.66,54,-0.34,393,0.23,149,0.28,107,-0.05,291,0.44,106,0.07,202,0.37,81,0.46,133,0.55,71,-0.09,307,0.32,104,0.52,35,-0.2,409,0.78,99,1.05,35,-0.27,347,"2018-19",1610612748,"MIA","1628389_2018-19","No Role Available"
1628390,"Terrance Ferguson",-0.38,371,-0.09,319,-0.3,381,-0.07,302,-0.46,475,0.39,68,-0.54,441,0.24,134,-0.78,515,-0.14,306,0.35,118,-0.5,427,-0.07,307,-0.07,308,0.01,280,-0.27,327,-0.44,421,0.17,171,"2018-19",1610612760,"OKC","1628390_2018-19","No Role Available"
203526,"Raul Neto",-0.12,286,0.3,133,-0.42,405,0.03,251,0.22,141,-0.19,386,-0.35,404,-0.27,396,-0.08,311,-0.86,451,-0.37,417,-0.49,421,-0.44,452,0.09,192,-0.53,508,-0.1,272,0.65,90,-0.74,448,"2019-20",1610612755,"PHI","203526_2019-20","No Role Available"
1630271,"Brodric Thomas",-0.03,247,-0.16,341,0.13,198,-0.18,342,0.04,237,-0.22,377,0.12,212,-0.6,499,0.72,28,0.18,199,-0.3,394,0.47,107,-0.03,297,-0.1,348,0.07,209,-0.26,322,-0.11,314,-0.15,294,"2020-21",1610612745,"HOU","1630271_2020-21","Wing, Playmaker"
203584,"Troy Daniels",-0.31,358,-0.22,366,-0.1,292,0.03,243,0.22,140,-0.19,382,-0.46,432,-0.26,392,-0.2,375,-0.77,440,-0.57,463,-0.2,340,-0.03,293,0.02,258,-0.05,305,-0.07,264,0.3,170,-0.37,378,"2019-20",1610612747,"LAL","203584_2019-20","No Role Available"
202335,"Patrick Patterson",2.4,10,0.98,21,1.42,24,1.59,7,0.81,8,0.78,24,0.78,45,0.01,245,0.78,30,-0.07,265,-0.21,338,0.15,174,0.99,6,0.55,25,0.43,39,3.33,6,1.35,19,1.98,14,"2016-17",1610612761,"TOR","202335_2016-17","No Role Available"
202918,"Xavier Silas",0.08,211,0.02,261,0.06,207,-0.04,275,0.01,248,-0.05,295,0.19,174,0.03,239,0.15,153,-0.1,314,-0.13,356,0.02,248,0.03,248,0.01,268,0.03,230,0.04,239,0.01,263,0.04,224,"2017-18",1610612738,"BOS","202918_2017-18","No Role Available"
202933,"Julyan Stone",0.26,161,0.2,156,0.06,206,0.31,125,0.23,128,0.07,188,-0.44,437,-0.16,374,-0.28,406,-0.39,391,0.15,199,-0.54,449,0.08,220,-0.07,337,0.15,156,0.55,126,0.39,131,0.17,178,"2017-18",1610612766,"CHA","202933_2017-18","No Role Available"
203076,"Anthony Davis",1.28,48,0.73,41,0.55,75,1.06,21,0.82,14,0.24,113,1.05,22,0.9,18,0.15,158,-1.07,492,-0.96,521,-0.12,327,0.25,137,0.04,222,0.2,113,2.02,32,1.46,17,0.56,101,"2017-18",1610612740,"NOP","203076_2017-18","No Role Available"
1628387,"Ike Anigbogu",-0.1,285,-0.06,295,-0.05,280,0.01,261,0.01,259,0.01,254,-0.06,279,0.01,270,-0.05,291,-0.16,311,-0.11,338,-0.06,293,0.01,259,0.01,267,0.02,249,-0.05,264,0.01,256,-0.04,276,"2018-19",1610612754,"IND","1628387_2018-19","No Role Available"
203585,"Rodney McGruder",-0.12,292,-0.3,395,0.18,177,0.29,136,0.13,176,0.15,160,0.14,191,-0.52,476,0.66,37,-0.36,362,0.21,167,-0.57,439,-0.89,514,-0.69,514,-0.2,401,-0.19,301,-0.25,346,0.06,233,"2019-20",1610612746,"LAC","203585_2019-20","No Role Available"
202336,"Larry Sanders",-0.18,279,-0.05,265,-0.13,257,0.04,199,0.01,229,0.03,187,-0.18,301,-0.14,316,-0.04,261,0.08,223,0.01,248,0.08,209,-0.24,351,-0.05,270,-0.18,366,-0.1,249,-0.02,236,-0.08,230,"2016-17",1610612739,"CLE","202336_2016-17","No Role Available"
202337,"Luke Babbitt",-0.24,295,0.13,174,-0.37,353,0.44,96,0.48,45,-0.04,237,-0.44,389,0.47,72,-0.91,471,-1.11,447,-0.37,391,-0.74,435,-0.03,258,-0.03,246,0.01,251,0.08,202,0.53,103,-0.46,356,"2016-17",1610612748,"MIA","202337_2016-17","No Role Available"
201145,"Jeff Green",0.25,179,-0.7,488,0.95,42,0.44,109,0.14,163,0.29,118,0.55,88,-0.25,393,0.81,19,-1.41,511,-0.27,381,-1.14,519,-0.06,313,-0.27,451,0.21,124,0.55,144,-0.47,428,1.02,60,"2020-21",1610612751,"BKN","201145_2020-21","Wing, Finisher"
2200,"Pau Gasol",0.41,120,0.35,119,0.06,178,0.44,93,0.12,167,0.33,86,-0.09,263,0.57,56,-0.66,450,-0.58,373,0.05,219,-0.63,411,-0.11,301,-0.31,423,0.2,109,0.51,129,0.16,180,0.35,126,"2016-17",1610612759,"SAS","2200_2016-17","No Role Available"
203107,"Tomas Satoransky",-0.68,417,-0.48,430,-0.2,339,-0.2,352,-0.5,479,0.29,110,-0.36,411,-0.12,337,-0.24,396,0.05,239,-0.42,438,0.47,105,0.07,212,0.67,16,-0.6,516,-0.26,325,-0.12,309,-0.14,307,"2019-20",1610612741,"CHI","203107_2019-20","No Role Available"
203658,"Norvel Pelle",-0.54,397,-0.02,281,-0.52,418,-0.34,401,-0.31,423,-0.03,269,-0.46,431,-0.3,411,-0.15,351,-0.28,339,-0.19,357,-0.09,290,-0.38,434,-0.19,398,-0.19,396,-1.18,468,-0.82,461,-0.36,376,"2019-20",1610612755,"PHI","203658_2019-20","No Role Available"
1628390,"Terrance Ferguson",-0.21,314,-0.08,301,-0.12,314,-0.12,314,-0.04,295,-0.09,295,-0.44,421,-0.36,439,-0.08,309,-0.16,315,0.04,243,-0.2,342,-0.05,305,0.02,251,-0.06,326,-0.28,333,-0.03,275,-0.24,340,"2020-21",1610612755,"PHI","1628390_2020-21","Wing, Shooter"
2037,"Jamal Crawford",0.01,242,0.01,278,0.02,241,0.05,228,0.02,249,0.03,232,-0.08,300,0.01,254,-0.08,310,0.18,204,0.11,213,0.07,228,0.03,238,-0.03,305,0.06,206,0.1,218,0.03,250,0.07,231,"2019-20",1610612751,"BKN","2037_2019-20","No Role Available"
1628391,"D.J. Wilson",0.08,185,0.68,47,-0.6,458,0.12,185,0.1,188,0.02,221,-0.66,468,-0.13,337,-0.53,482,0.97,69,1.14,8,-0.17,342,-0.13,344,-0.13,358,0.01,271,0.11,208,0.35,139,-0.23,340,"2018-19",1610612749,"MIL","1628391_2018-19","No Role Available"
1628392,"Isaiah Hartenstein",0.13,173,0.03,243,0.1,186,0.08,202,0.02,241,0.07,187,0.01,250,-0.2,385,0.2,139,0.44,137,0.11,216,0.33,120,-0.06,297,0.1,165,-0.16,394,0.28,176,0.05,219,0.22,157,"2018-19",1610612745,"HOU","1628392_2018-19","No Role Available"
203901,"Elfrid Payton",1.28,49,0.09,215,1.19,28,0.08,211,-0.11,327,0.18,151,-0.08,296,0.15,166,-0.23,387,2.22,10,0.65,56,1.56,12,-0.03,287,-0.29,439,0.26,93,0.29,175,-0.34,372,0.63,98,"2019-20",1610612752,"NYK","203901_2019-20","No Role Available"
1628396,"Tony Bradley",-0.23,329,-0.14,343,-0.08,300,-0.18,354,-0.13,362,-0.05,294,-0.15,328,-0.12,331,-0.03,283,0.18,193,-0.13,351,0.31,131,-0.08,315,0.01,246,-0.08,337,-0.3,335,-0.25,367,-0.04,280,"2018-19",1610612762,"UTA","1628396_2018-19","No Role Available"
1628470,"Torrey Craig",-0.7,420,-1.09,509,0.39,129,-0.72,491,-0.47,474,-0.25,412,-0.28,373,-0.27,400,0.01,268,1.29,37,-0.41,434,1.7,7,-0.68,489,-0.49,486,-0.19,393,-1.41,488,-1.24,502,-0.17,317,"2019-20",1610612743,"DEN","1628470_2019-20","No Role Available"
202338,"Kevin Seraphin",-0.75,407,0.12,179,-0.87,449,-0.73,453,-0.45,440,-0.28,381,-0.43,388,0.2,139,-0.64,449,-0.12,282,0.21,146,-0.34,356,0.1,180,-0.06,275,0.16,133,-1.29,445,-0.66,409,-0.63,395,"2016-17",1610612754,"IND","202338_2016-17","No Role Available"
202348,"Jordan Crawford",0.18,164,-0.5,398,0.67,71,-0.09,259,-0.71,472,0.62,41,-0.1,269,0.22,131,-0.32,382,-1.53,472,-1.03,475,-0.5,394,0.69,38,0.18,125,0.51,27,0.11,195,-0.91,441,1.02,52,"2016-17",1610612740,"NOP","202348_2016-17","No Role Available"
202349,"Greivis Vasquez",-0.16,269,-0.03,253,-0.14,260,0.01,209,0.01,238,0.01,198,-0.12,271,0.04,223,-0.16,320,-0.11,278,-0.09,278,-0.03,260,-0.04,261,-0.06,274,0.02,219,0.01,218,-0.02,234,0.02,201,"2016-17",1610612751,"BKN","202349_2016-17","No Role Available"
1628476,"Derrick Walton Jr.",-0.77,431,-0.5,436,-0.26,363,-0.28,384,-0.15,352,-0.14,359,0.12,195,-0.14,347,0.27,116,-0.6,408,-0.2,361,-0.4,402,0.04,235,0.07,199,-0.04,291,-0.28,331,-0.1,306,-0.18,319,"2019-20",1610612746,"LAC","1628476_2019-20","No Role Available"
203903,"Jordan Clarkson",0.89,78,-0.54,443,1.43,17,-0.09,297,-0.36,441,0.26,122,0.56,76,0.81,23,-0.25,401,0.31,175,0.22,158,0.09,218,0.07,210,-0.55,499,0.62,19,0.62,126,-0.71,451,1.33,27,"2019-20",1610612739,"CLE","203903_2019-20","No Role Available"
203915,"Spencer Dinwiddie",0.57,115,-0.2,360,0.77,65,0.4,106,0.21,149,0.19,148,0.47,91,-0.29,405,0.76,23,0.23,196,0.14,195,0.09,220,-0.66,488,-0.88,525,0.22,108,0.19,191,-0.39,389,0.59,103,"2019-20",1610612751,"BKN","203915_2019-20","No Role Available"
203918,"Rodney Hood",-0.3,351,0.05,239,-0.35,385,0.55,71,0.35,91,0.2,144,-1.09,514,-0.49,468,-0.6,484,-0.61,411,0.16,182,-0.78,476,0.17,172,0.16,156,0.01,252,0.31,170,0.33,163,-0.02,262,"2019-20",1610612757,"POR","203918_2019-20","No Role Available"
201152,"Thaddeus Young",0.44,133,-0.8,501,1.24,24,1.68,8,-0.05,313,1.74,1,-0.95,509,-0.54,490,-0.41,461,1.37,32,-0.09,302,1.46,16,0.4,86,0.15,150,0.25,100,2.68,10,-0.14,328,2.83,2,"2020-21",1610612741,"CHI","201152_2020-21","Big, Finisher"
203920,"Khem Birch",-0.89,452,0.37,115,-1.27,512,-1.05,510,-0.22,391,-0.83,519,0.5,85,0.02,239,0.48,68,0.03,246,0.13,197,-0.1,296,-0.02,280,0.12,176,-0.14,369,-1.45,492,-0.26,349,-1.2,504,"2019-20",1610612753,"ORL","203920_2019-20","No Role Available"
1628391,"D.J. Wilson",-1.22,498,-0.26,376,-0.96,512,-0.27,378,0.16,150,-0.44,464,-0.8,495,-0.39,451,-0.41,457,-0.43,392,0.21,173,-0.64,465,-0.39,455,-0.12,360,-0.28,453,-1.03,458,0.03,243,-1.06,488,"2020-21",1610612749,"MIL","1628391_2020-21","Wing, Shooter"
203922,"Glenn Robinson III",-1.64,510,-1.03,506,-0.61,434,-1.08,512,-1.17,527,0.09,198,0.09,210,0.62,44,-0.53,475,-0.13,293,-1.19,512,1.06,30,-0.11,334,-0.15,383,0.04,229,-1.91,511,-2.06,526,0.15,197,"2019-20",1610612744,"GSW","203922_2019-20","No Role Available"
201933,"Blake Griffin",1.15,59,0.37,119,0.78,66,0.16,185,0.12,182,0.04,214,0.01,265,-0.02,264,0.03,250,-0.19,330,-0.14,330,-0.05,283,1.04,8,0.24,100,0.8,5,1.03,88,0.42,124,0.61,113,"2020-21",1610612765,"DET","201933_2020-21","Wing, Playmaker"
202355,"Hassan Whiteside",0.39,122,0.08,199,0.31,117,0.94,26,0.47,49,0.47,60,0.38,106,0.39,89,0.01,244,1.46,23,-0.1,285,1.56,10,-0.86,471,-0.65,478,-0.2,373,0.86,88,0.19,172,0.67,79,"2016-17",1610612748,"MIA","202355_2016-17","No Role Available"
202357,"Nemanja Bjelica",0.12,181,0.11,182,0.01,197,0.09,183,0.59,25,-0.51,443,-1.4,479,-1.53,486,0.13,173,0.45,122,0.01,247,0.46,102,0.28,116,0.29,90,0.01,256,0.27,160,0.84,54,-0.57,382,"2016-17",1610612750,"MIN","202357_2016-17","No Role Available"
1628410,"Edmond Sumner",-0.44,383,-0.1,326,-0.33,390,-0.23,375,0.02,237,-0.25,414,-0.76,482,-0.69,500,-0.07,303,-0.46,393,-0.37,416,-0.09,309,-0.27,396,-0.04,290,-0.23,422,-0.9,443,-0.36,399,-0.54,423,"2018-19",1610612754,"IND","1628410_2018-19","No Role Available"
1629680,"Matisse Thybulle",0.27,169,0.11,201,0.16,186,0.1,197,-0.27,408,0.37,87,-0.13,311,-0.38,440,0.25,124,0.44,150,0.25,151,0.19,178,0.85,15,1.07,2,-0.22,412,1.04,78,0.55,102,0.48,120,"2019-20",1610612755,"PHI","1629680_2019-20","No Role Available"
203110,"Draymond Green",-0.49,393,1.1,21,-1.58,524,-0.19,345,0.17,164,-0.36,454,0.37,115,0.25,122,0.12,183,0.08,227,1.02,20,-0.93,493,-0.14,349,0.04,224,-0.19,394,-0.47,365,0.62,92,-1.09,491,"2019-20",1610612744,"GSW","203110_2019-20","No Role Available"
2037,"Jamal Crawford",-1.94,536,-1.81,541,-0.12,334,-1.32,538,-1.25,541,-0.07,321,-0.12,326,-0.32,435,0.2,139,-1.97,536,-1.26,531,-0.71,475,-0.36,442,-0.26,445,-0.1,367,-2.49,534,-2.53,541,0.05,218,"2017-18",1610612750,"MIN","2037_2017-18","No Role Available"
201565,"Derrick Rose",0.39,146,0.82,46,-0.43,413,0.71,61,0.89,7,-0.18,357,-0.71,484,-0.19,368,-0.52,484,-1.16,495,-0.42,429,-0.74,483,0.43,80,0.11,181,0.32,80,0.9,101,0.94,48,-0.04,251,"2020-21",1610612765,"DET","201565_2020-21","Ball Handler, Primary Playmaker"
203926,"Doug McDermott",0.34,151,0.12,198,0.23,167,0.82,40,0.65,32,0.17,155,-1.08,513,-0.39,443,-0.69,496,-1.9,518,-0.84,495,-1.06,503,0.44,83,0.01,289,0.45,46,0.69,118,0.48,120,0.21,179,"2019-20",1610612754,"IND","203926_2019-20","No Role Available"
203933,"T.J. Warren",0.79,91,0.45,97,0.33,147,0.12,186,0.27,120,-0.14,362,0.63,59,0.58,48,0.05,223,0.47,146,0.3,139,0.17,180,0.44,84,-0.23,418,0.67,13,1.03,79,0.66,85,0.37,145,"2019-20",1610612754,"IND","203933_2019-20","No Role Available"
203935,"Marcus Smart",0.95,72,0.61,78,0.34,144,0.01,261,0.42,69,-0.42,463,0.97,30,-0.03,276,1,14,0.24,191,-0.34,408,0.58,89,0.66,45,0.59,25,0.06,205,1.07,75,1.06,39,0.01,250,"2019-20",1610612738,"BOS","203935_2019-20","No Role Available"
1628398,"Kyle Kuzma",-0.84,466,0.35,125,-1.19,522,-0.37,412,0.29,101,-0.66,508,0.35,132,0.95,16,-0.6,497,0.8,84,0.94,28,-0.14,325,-0.83,519,-0.09,336,-0.74,531,-0.86,438,1.28,22,-2.14,533,"2020-21",1610612747,"LAL","1628398_2020-21","Wing, Shooter"
203816,"Scotty Hopson",-0.17,318,-0.06,313,-0.12,327,-0.12,327,-0.09,341,-0.03,279,0.09,216,0.01,253,0.08,191,0.17,207,0.03,275,0.14,200,0.01,285,0.04,219,-0.06,341,-0.16,319,-0.08,312,-0.08,290,"2017-18",1610612742,"DAL","203816_2017-18","No Role Available"
203894,"Shabazz Napier",0.53,114,0.55,78,0.01,258,-0.02,254,0.3,100,-0.33,455,0.43,104,0.4,80,0.03,236,-0.29,371,-0.62,481,0.32,138,-0.05,315,-0.17,408,0.12,166,0.46,148,0.47,112,0.01,247,"2017-18",1610612757,"POR","203894_2017-18","No Role Available"
1628403,"Caleb Swanigan",-0.99,476,-0.16,350,-0.83,494,-0.29,399,0.11,183,-0.4,468,-0.06,278,0.02,239,-0.07,308,-0.19,321,-0.05,308,-0.14,334,-0.41,448,-0.06,307,-0.35,477,-0.77,422,0.16,178,-0.93,490,"2018-19",1610612757,"POR","1628403_2018-19","No Role Available"
1628404,"Josh Hart",-0.14,302,0.53,83,-0.67,470,0.54,70,0.75,9,-0.21,394,-0.21,351,-0.08,316,-0.13,331,-0.29,352,0.04,256,-0.33,388,-0.1,332,0.13,152,-0.23,426,0.47,136,1.3,16,-0.83,476,"2018-19",1610612747,"LAL","1628404_2018-19","No Role Available"
201952,"Jeff Teague",0.18,202,0.01,255,0.17,181,0.62,66,-0.16,382,0.78,36,0.52,96,0.3,109,0.22,148,-2.15,536,-2.16,539,0.01,255,0.36,93,0.39,59,-0.03,300,0.51,149,-0.43,417,0.94,66,"2020-21",1610612738,"BOS","201952_2020-21","Ball Handler, Primary Playmaker"
1628408,"PJ Dozier",1.34,41,1.58,5,-0.23,353,0.82,45,0.85,8,-0.02,249,-0.6,461,-0.28,407,-0.32,421,2.07,10,1.61,1,0.46,110,0.22,148,0.48,41,-0.26,444,1.92,31,2.1,3,-0.18,307,"2020-21",1610612743,"DEN","1628408_2020-21","Wing, Finisher"
202362,"Lance Stephenson",0.64,88,0.44,94,0.2,142,0.02,207,0.22,117,-0.2,342,-0.24,324,0.01,244,-0.23,352,0.83,62,0.34,106,0.49,91,0.07,196,0.19,119,-0.12,336,0.2,173,0.56,99,-0.37,329,"2016-17",0,"League","202362_2016-17","No Role Available"
1629716,"Marques Bolden",0.06,226,0.05,237,0.01,243,0.02,253,0.04,230,-0.02,261,0.01,259,-0.04,290,0.05,225,0.01,261,0.01,267,-0.02,261,0.01,266,0.01,274,0.01,264,0.04,239,0.05,239,0.01,259,"2019-20",1610612739,"CLE","1629716_2019-20","No Role Available"
203118,"Mike Scott",0.65,107,0.04,247,0.61,92,1.05,23,0.4,73,0.65,25,-0.77,491,-0.54,484,-0.22,386,2.71,3,1.08,16,1.64,10,0.12,192,-0.09,341,0.2,116,2.18,16,0.8,61,1.38,26,"2019-20",1610612755,"PHI","203118_2019-20","No Role Available"
203124,"Kyle OQuinn",-0.3,353,-0.47,427,0.17,183,-0.39,419,-0.21,387,-0.18,381,-0.3,380,-0.07,317,-0.23,389,0.78,91,0.39,112,0.38,121,-0.09,321,-0.28,437,0.19,122,-0.6,397,-0.53,422,-0.07,282,"2019-20",1610612755,"PHI","203124_2019-20","No Role Available"
203952,"Andrew Wiggins",-0.16,300,-0.54,442,0.38,132,-0.53,452,-0.52,484,0.01,258,0.76,45,0.22,141,0.54,56,1.19,42,0.16,185,1.04,32,-0.64,487,-0.67,510,0.02,244,-0.95,450,-1.47,515,0.51,115,"2019-20",1610612750,"MIN","203952_2019-20","No Role Available"
202390,"Gary Neal",0.01,211,0.04,216,-0.02,218,-0.15,276,-0.02,258,-0.13,297,0.18,159,-0.02,255,0.2,144,0.1,215,0.02,235,0.07,213,0.09,183,0.05,180,0.04,213,-0.05,232,0.04,216,-0.09,232,"2016-17",1610612737,"ATL","202390_2016-17","No Role Available"
202407,"Elijah Millsap",-0.11,251,0.06,209,-0.17,274,-0.05,249,0.03,218,-0.08,269,-0.19,305,-0.02,258,-0.17,324,-0.05,261,-0.08,276,0.03,227,0.04,218,0.05,184,0.01,254,-0.12,255,0.05,213,-0.17,273,"2016-17",1610612756,"PHX","202407_2016-17","No Role Available"
202498,"Lance Thomas",-1.26,460,-0.94,464,-0.32,333,-0.94,473,-0.12,319,-0.82,477,-0.5,405,-0.67,453,0.17,153,-2.06,483,-1.22,480,-0.84,448,-0.11,303,-0.24,388,0.13,157,-1.86,467,-0.92,442,-0.94,438,"2016-17",1610612752,"NYK","202498_2016-17","No Role Available"
202620,"Arinze Onuaku",-0.26,299,-0.05,267,-0.21,295,-0.13,269,-0.05,278,-0.08,263,-0.06,255,0.06,211,-0.11,291,-0.31,320,-0.22,344,-0.09,282,0.01,233,0.05,186,-0.04,276,-0.16,264,-0.04,245,-0.13,247,"2016-17",1610612753,"ORL","202620_2016-17","No Role Available"
202684,"Tristan Thompson",0.53,123,0.68,61,-0.15,328,-0.31,391,0.03,238,-0.35,436,1.8,5,1.04,10,0.76,24,1.39,31,0.75,51,0.64,73,0.1,209,-0.15,388,0.25,104,0.63,139,0.53,104,0.09,215,"2020-21",1610612738,"BOS","202684_2020-21","Big, Finisher"
1628400,"Semi Ojeleye",-1.37,501,-0.09,323,-1.29,515,-0.59,463,0.23,136,-0.82,516,-0.16,329,0.12,177,-0.29,414,-0.21,320,-0.18,353,-0.03,266,-0.48,462,-0.11,358,-0.37,472,-1.35,485,0.3,174,-1.65,523,"2019-20",1610612738,"BOS","1628400_2019-20","No Role Available"
202681,"Kyrie Irving",1.75,21,-0.54,406,2.29,6,0.91,30,-0.21,359,1.12,10,0.42,98,0.3,109,0.12,183,-0.24,309,-0.73,456,0.49,90,0.2,139,-0.58,470,0.78,7,1.91,28,-0.85,435,2.76,4,"2016-17",1610612739,"CLE","202681_2016-17","No Role Available"
202682,"Derrick Williams",-1.38,466,-0.93,463,-0.45,377,-0.09,258,0.01,245,-0.08,268,0.32,122,0.22,130,0.1,191,-1.9,482,-0.45,408,-1.45,478,-0.41,411,-0.47,452,0.07,197,-0.93,401,-0.52,388,-0.41,344,"2016-17",0,"League","202682_2016-17","No Role Available"
202685,"Jonas Valanciunas",0.89,80,0.07,221,0.82,58,0.01,242,0.12,183,-0.11,312,1.55,8,1.35,4,0.21,152,3.93,1,1.41,3,2.52,2,-0.6,491,-0.53,510,-0.07,335,1.37,65,0.71,72,0.66,105,"2020-21",1610612763,"MEM","202685_2020-21","Big, Playmaker"
202689,"Kemba Walker",0.55,115,0.05,231,0.49,106,0.72,60,0.14,162,0.57,63,-0.35,397,0.18,154,-0.53,487,-0.63,438,-0.72,494,0.09,217,0.24,138,0.16,143,0.08,194,1.15,77,0.21,182,0.94,65,"2020-21",1610612738,"BOS","202689_2020-21","Ball Handler, Primary Playmaker"
1628401,"Derrick White",1.77,17,0.49,92,1.27,23,0.19,160,0.41,70,-0.22,399,1.08,23,0.02,238,1.07,12,-0.14,295,0.5,85,-0.64,447,0.15,181,-0.21,410,0.35,68,0.57,132,0.47,125,0.1,216,"2019-20",1610612759,"SAS","1628401_2019-20","No Role Available"
203490,"Otto Porter Jr.",0.69,101,0.09,220,0.61,91,0.01,265,-0.14,350,0.13,170,0.59,66,0.01,251,0.6,49,-0.65,419,-0.79,487,0.14,197,0.79,19,0.45,43,0.34,71,0.5,140,-0.05,285,0.54,112,"2019-20",1610612741,"CHI","203490_2019-20","No Role Available"
203493,"Reggie Bullock",-0.14,296,-0.05,299,-0.09,288,-0.23,366,0.06,222,-0.29,428,-0.31,382,-0.24,391,-0.07,302,0.72,101,0.84,30,-0.12,306,0.01,277,-0.06,326,0.05,219,-0.33,344,0.16,197,-0.49,402,"2019-20",1610612752,"NYK","203493_2019-20","No Role Available"
1628414,"Sindarius Thornwell",0.77,91,0.66,64,0.11,206,0.01,251,0.03,241,-0.05,263,0.51,98,0.37,94,0.14,188,0.8,82,0.46,104,0.35,143,0.26,129,0.14,156,0.12,168,0.42,162,0.36,142,0.06,225,"2020-21",1610612740,"NOP","1628414_2020-21","Wing, Shooter"
1628419,"Cameron Oliver",-0.26,331,-0.23,366,-0.03,258,0.16,184,-0.02,278,0.18,161,-0.33,389,-0.17,356,-0.16,355,0.08,224,0.21,174,-0.12,318,-0.18,383,-0.15,389,-0.03,296,-0.02,249,-0.15,331,0.12,204,"2020-21",1610612745,"HOU","1628419_2020-21","No Role Available"
203943,"Noah Vonleh",-0.5,403,-0.03,293,-0.47,439,-0.19,366,0.34,83,-0.54,507,0.51,81,0.47,62,0.05,226,0.02,265,0.23,165,-0.2,361,-0.29,422,-0.27,449,-0.02,298,-0.34,357,0.29,154,-0.63,453,"2017-18",0,"League","203943_2017-18","No Role Available"
1628411,"Wes Iwundu",-0.71,436,0.04,228,-0.75,478,0.04,226,0.37,75,-0.33,451,0.18,183,0.36,100,-0.18,354,-1.03,471,-0.76,488,-0.27,373,0.22,142,-0.05,298,0.27,83,0.25,181,0.7,77,-0.46,405,"2018-19",1610612753,"ORL","1628411_2018-19","No Role Available"
202683,"Enes Kanter",-0.29,305,-1.02,470,0.73,66,0.55,73,-0.04,273,0.59,46,-0.08,260,-0.59,435,0.51,63,0.86,61,-0.09,280,0.95,32,-1.1,481,-0.62,474,-0.48,456,0.44,138,-0.77,423,1.21,46,"2016-17",1610612760,"OKC","202683_2016-17","No Role Available"
202685,"Jonas Valanciunas",0.43,115,-0.3,354,0.74,64,-0.24,319,-0.44,436,0.19,125,0.3,131,0.39,88,-0.09,282,1.14,37,-0.02,258,1.17,23,-0.2,335,-0.3,414,0.1,179,0.21,170,-0.62,402,0.83,67,"2016-17",1610612761,"TOR","202685_2016-17","No Role Available"
202687,"Bismack Biyombo",-0.05,228,0.34,124,-0.39,361,-0.65,440,-0.12,322,-0.52,448,0.99,29,0.35,98,0.64,45,0.12,207,0.19,158,-0.07,274,-0.28,378,-0.35,434,0.07,195,-1.24,441,-0.36,354,-0.88,432,"2016-17",1610612753,"ORL","202687_2016-17","No Role Available"
202688,"Brandon Knight",-1.82,475,-0.51,401,-1.31,476,-1.16,477,-0.52,453,-0.64,465,-0.64,435,-0.6,439,-0.04,260,0.23,173,0.65,41,-0.42,375,-0.39,406,-0.06,272,-0.33,422,-2.47,481,-1.13,464,-1.34,465,"2016-17",1610612756,"PHX","202688_2016-17","No Role Available"
202689,"Kemba Walker",1.39,39,0.09,194,1.3,29,0.39,103,0.11,172,0.28,102,0.58,71,0.18,150,0.4,83,0.65,89,0.59,55,0.05,219,0.61,52,-0.27,404,0.88,3,1.97,26,0.24,160,1.73,25,"2016-17",1610612766,"CHA","202689_2016-17","No Role Available"
1628412,"Frank Mason",-0.72,437,-0.3,393,-0.42,417,-0.87,500,-0.6,504,-0.28,425,-0.14,324,-0.22,394,0.08,202,-0.65,429,0.27,142,-0.92,495,-0.08,312,0.12,157,-0.2,408,-1.92,508,-0.91,487,-1.01,497,"2018-19",1610612758,"SAC","1628412_2018-19","No Role Available"
1628414,"Sindarius Thornwell",-0.45,391,-0.06,302,-0.39,407,-0.37,423,-0.06,320,-0.31,439,0.43,107,-0.15,354,0.58,43,-0.25,338,0.47,87,-0.72,471,0.03,240,0.1,167,-0.06,322,-0.19,304,0.3,153,-0.49,410,"2018-19",1610612746,"LAC","1628414_2018-19","No Role Available"
203957,"Dante Exum",-0.31,357,0.39,109,-0.7,450,-0.38,417,0.13,175,-0.52,483,-0.17,331,-0.05,291,-0.13,338,0.9,73,0.35,127,0.56,91,-0.83,509,-0.38,462,-0.44,495,-1.17,467,0.17,195,-1.34,509,"2019-20",1610612762,"UTA","203957_2019-20","No Role Available"
203994,"Jusuf Nurkic",0.4,139,-0.08,318,0.48,108,-0.27,377,-0.5,481,0.24,128,-0.19,339,-0.24,389,0.05,226,1.05,55,0.51,82,0.54,94,0.39,98,0.22,113,0.17,131,0.14,200,-0.62,441,0.77,77,"2019-20",1610612757,"POR","203994_2019-20","No Role Available"
2199,"Tyson Chandler",0.22,182,0.1,209,0.12,208,-0.18,336,0.04,228,-0.22,396,0.85,39,0.11,182,0.74,25,1.05,54,0.77,41,0.28,153,-0.05,301,0.01,284,-0.04,301,0.1,219,0.28,178,-0.19,322,"2019-20",1610612745,"HOU","2199_2019-20","No Role Available"
201572,"Brook Lopez",2.39,7,1.4,9,0.99,40,1.21,22,0.47,49,0.74,40,1.2,18,1.38,2,-0.18,360,0.56,116,0.38,126,0.18,189,-0.88,524,-0.73,528,-0.15,393,1.63,46,0.64,83,0.98,63,"2020-21",1610612749,"MIL","201572_2020-21","Big, Shooter"
2747,"JR Smith",-0.25,334,0.01,277,-0.24,351,-0.2,348,-0.13,347,-0.07,302,0.09,212,-0.04,287,0.13,178,-0.14,296,0.18,174,-0.32,383,-0.12,338,0.01,270,-0.13,364,-0.62,400,-0.34,373,-0.28,345,"2019-20",1610612747,"LAL","2747_2019-20","No Role Available"
201588,"George Hill",0.75,94,-0.03,276,0.78,65,0.17,182,-0.06,320,0.23,139,0.38,125,0.26,122,0.12,195,-1.15,493,-0.69,488,-0.46,418,0.32,106,-0.2,417,0.52,28,0.15,213,-0.33,392,0.48,135,"2020-21",1610612760,"OKC","201588_2020-21","Wing, Playmaker"
1628436,"Luke Kornet",0.4,143,0.64,68,-0.24,357,0.45,105,0.38,75,0.07,197,0.06,242,0.63,51,-0.57,493,-0.4,385,1.04,16,-1.44,531,-0.16,371,-0.1,341,-0.06,325,0.44,159,0.94,50,-0.5,401,"2020-21",1610612741,"CHI","1628436_2020-21","Wing, Shooter"
1628449,"Chris Boucher",0.27,177,-0.42,433,0.69,73,0.86,43,0.16,154,0.7,47,-0.02,276,-0.68,513,0.66,36,-0.98,480,-0.96,517,-0.02,272,0.27,123,0.02,246,0.25,101,1.37,64,-0.39,407,1.76,23,"2020-21",1610612761,"TOR","1628449_2020-21","Big, Shooter"
202323,"Evan Turner",-0.62,406,0.11,205,-0.73,459,-0.1,301,0.24,130,-0.34,445,0.01,261,-0.04,289,0.04,231,-0.82,445,-0.62,470,-0.2,339,-0.23,389,0.37,61,-0.6,515,-0.53,379,0.34,161,-0.87,467,"2019-20",1610612737,"ATL","202323_2019-20","No Role Available"
201609,"Goran Dragic",-1.23,500,-0.92,515,-0.31,382,0.57,76,0.26,107,0.31,115,-0.24,355,-0.51,484,0.27,131,-0.9,469,-0.34,408,-0.56,450,0.01,274,0.03,236,-0.03,292,0.45,155,0.27,169,0.18,185,"2020-21",1610612748,"MIA","201609_2020-21","Ball Handler, Secondary Playmaker"
202693,"Markieff Morris",-0.56,417,0.32,132,-0.88,505,0.02,238,0.13,167,-0.11,317,0.51,97,0.12,179,0.39,88,-0.07,284,0.3,146,-0.37,397,-0.89,526,-0.24,436,-0.65,521,-0.12,288,0.36,143,-0.48,395,"2020-21",1610612747,"LAL","202693_2020-21","Wing, Shooter"
2199,"Tyson Chandler",0.36,130,0.34,122,0.01,194,-0.05,246,-0.22,363,0.17,134,0.41,100,0.21,134,0.2,142,0.14,200,0.13,178,0.01,241,0.35,99,0.5,31,-0.15,350,0.65,115,0.15,187,0.5,105,"2016-17",1610612756,"PHX","2199_2016-17","No Role Available"
202691,"Klay Thompson",1.97,15,0.05,211,1.91,12,2.02,4,0.69,14,1.33,4,-0.77,450,-0.21,342,-0.56,434,-1.23,458,-0.8,464,-0.43,377,0.11,176,0.02,206,0.09,183,2.99,8,1.09,32,1.9,18,"2016-17",1610612744,"GSW","202691_2016-17","No Role Available"
101106,"Andrew Bogut",-0.82,476,0.11,200,-0.93,518,0.01,233,0.27,114,-0.26,416,-0.5,451,0.05,225,-0.55,495,0.64,94,0.32,122,0.32,139,-0.39,450,0.01,251,-0.4,495,-0.32,353,0.43,121,-0.75,468,"2017-18",1610612747,"LAL","101106_2017-18","No Role Available"
2738,"Andre Iguodala",1.3,43,0.68,48,0.62,62,1.09,19,0.93,9,0.16,147,0.14,197,-0.28,421,0.42,75,-0.41,395,-0.16,366,-0.26,382,0.19,159,0.11,166,0.08,191,1.68,40,1.48,16,0.19,172,"2017-18",1610612744,"GSW","2738_2017-18","No Role Available"
1628420,"Monte Morris",-0.08,270,-0.68,477,0.6,75,0.24,141,0.34,84,-0.1,329,-0.02,258,0.32,113,-0.34,431,-0.24,333,-0.06,316,-0.17,341,0.39,85,-0.07,314,0.46,32,0.58,125,0.65,84,-0.07,288,"2018-19",1610612743,"DEN","1628420_2018-19","No Role Available"
202685,"Jonas Valanciunas",0.19,191,0.9,34,-0.71,453,0.93,31,0.98,4,-0.06,293,0.77,44,1.47,1,-0.7,497,2.92,1,1.66,2,1.25,21,-1.3,527,-1.21,529,-0.09,335,1.12,71,1.22,26,-0.1,295,"2019-20",1610612763,"MEM","202685_2019-20","No Role Available"
1628464,"Daniel Theis",1.28,49,0.73,52,0.55,99,-0.23,363,-0.09,344,-0.14,337,0.68,64,0.46,74,0.22,147,-0.43,390,-0.03,273,-0.4,404,0.59,42,0.1,188,0.49,38,0.3,177,0.2,186,0.1,209,"2020-21",1610612738,"BOS","1628464_2020-21","Big, Shooter"
1628421,"Devin Robinson",-0.11,287,-0.04,283,-0.07,285,-0.16,346,-0.15,377,0.01,244,-0.17,339,-0.08,317,-0.09,316,0.26,175,0.04,254,0.22,153,-0.13,346,-0.23,417,0.1,176,-0.19,303,-0.23,358,0.03,237,"2018-19",1610612764,"WAS","1628421_2018-19","No Role Available"
202687,"Bismack Biyombo",-0.78,434,-0.24,377,-0.55,425,-0.21,354,0.01,259,-0.21,395,0.46,93,0.39,74,0.07,208,0.58,122,0.08,232,0.5,98,-0.45,454,-0.26,430,-0.18,389,-0.41,354,0.01,262,-0.42,388,"2019-20",1610612766,"CHA","202687_2019-20","No Role Available"
1629682,"Tremont Waters",-0.09,275,0.02,246,-0.11,310,0.09,204,0.1,194,0.01,241,-0.46,428,-0.52,485,0.06,235,-0.04,273,-0.46,442,0.42,118,-0.39,454,-0.08,329,-0.31,463,-0.23,315,-0.07,290,-0.17,304,"2020-21",1610612738,"BOS","1629682_2020-21","Ball Handler, Primary Playmaker"
202694,"Marcus Morris Sr.",-1.16,494,-1.48,536,0.32,134,0.2,174,-0.6,511,0.8,35,0.01,266,-0.35,435,0.36,99,0.48,132,0.28,154,0.2,185,-0.1,341,-0.29,458,0.19,130,0.66,132,-1.17,515,1.84,18,"2020-21",1610612746,"LAC","202694_2020-21","Wing, Finisher"
1629018,"Gary Trent Jr.",-0.31,356,-0.73,467,0.42,123,-0.3,390,-0.4,456,0.11,184,0.63,58,0.3,102,0.33,89,-0.56,405,-0.7,479,0.14,196,0.42,90,-0.17,389,0.59,21,-0.26,326,-1.17,496,0.91,53,"2019-20",1610612757,"POR","1629018_2019-20","No Role Available"
203496,"Robert Covington",1.65,24,0.56,82,1.09,33,0.41,102,0.27,118,0.14,168,-0.66,474,-0.35,428,-0.32,426,-0.39,368,0.24,152,-0.64,448,0.47,75,0.41,50,0.06,204,0.67,121,0.56,101,0.11,214,"2019-20",1610612750,"MIN","203496_2019-20","No Role Available"
1628960,"Grayson Allen",-0.33,361,-0.2,351,-0.14,323,-0.34,406,0.06,219,-0.41,454,-0.09,302,-0.16,348,0.08,228,-0.31,360,-0.29,391,-0.02,270,0.08,224,-0.23,432,0.31,82,-0.16,296,-0.29,371,0.13,201,"2020-21",1610612763,"MEM","1628960_2020-21","Wing, Shooter"
1630204,"Ashton Hagans",-0.04,254,0.01,262,-0.03,255,-0.08,291,-0.03,291,-0.05,265,0.03,261,-0.04,273,0.06,233,0.03,246,0.01,253,0.01,249,0.04,252,0.06,216,-0.02,286,-0.08,271,0.02,249,-0.1,275,"2020-21",1610612750,"MIN","1630204_2020-21","Wing, Shooter"
202699,"Tobias Harris",1.16,58,1.44,7,-0.28,369,0.41,118,0.57,31,-0.15,342,1.08,23,0.62,52,0.46,72,0.79,87,0.91,31,-0.12,315,-0.16,372,-0.04,302,-0.12,369,1.22,72,1.37,15,-0.15,296,"2020-21",1610612755,"PHI","202699_2020-21","Wing, Playmaker"
1629608,"Dewan Hernandez",0.01,245,0.12,195,-0.12,299,0.3,132,0.11,190,0.19,150,-0.32,385,-0.24,387,-0.08,315,0.26,182,0.13,198,0.13,199,-0.03,288,0.01,265,-0.04,298,0.35,163,0.13,212,0.22,175,"2019-20",1610612761,"TOR","1629608_2019-20","No Role Available"
202692,"Alec Burks",-0.37,326,-0.76,443,0.39,103,-0.29,338,-0.12,318,-0.17,328,0.14,170,-0.46,411,0.61,48,0.1,214,-0.03,261,0.13,187,0.08,189,-0.15,338,0.23,98,-0.27,289,-0.36,353,0.1,175,"2016-17",1610612762,"UTA","202692_2016-17","No Role Available"
202693,"Markieff Morris",0.78,81,1.1,18,-0.32,337,0.43,98,0.09,177,0.34,83,-0.38,376,0.43,82,-0.81,467,0.88,59,0.72,31,0.16,167,-0.03,256,0.35,66,-0.39,438,0.98,75,0.88,49,0.09,177,"2016-17",1610612764,"WAS","202693_2016-17","No Role Available"
202704,"Reggie Jackson",0.69,99,0.56,79,0.13,196,1.22,21,0.34,90,0.89,23,-0.39,407,0.08,200,-0.47,473,0.5,128,0.77,47,-0.26,369,-0.04,302,-0.13,378,0.09,189,2.14,21,0.52,110,1.63,33,"2020-21",1610612746,"LAC","202704_2020-21","Ball Handler, Secondary Playmaker"
202694,"Marcus Morris Sr.",-0.31,314,0.31,130,-0.62,405,-0.3,344,0.48,46,-0.78,475,0.06,204,0.47,73,-0.41,404,1.04,43,0.55,61,0.49,95,0.55,58,-0.21,367,0.76,9,0.33,150,1.04,35,-0.71,405,"2016-17",1610612765,"DET","202694_2016-17","No Role Available"
203210,"JaMychal Green",-0.15,305,0.15,176,-0.3,379,-1.22,522,-0.39,461,-0.83,520,-0.98,511,-0.8,509,-0.18,355,1.55,27,0.55,70,1,36,-0.23,383,0.08,180,-0.31,465,-2.09,515,-0.81,482,-1.28,510,"2018-19",1610612763,"MEM","203210_2018-19","No Role Available"
203501,"Tim Hardaway Jr.",0.63,109,-0.29,393,0.92,44,0.69,54,0.29,111,0.4,76,0.28,136,0.15,167,0.14,171,0.19,203,0.57,69,-0.38,397,-0.07,314,-0.98,527,0.91,3,1.3,57,-0.37,383,1.67,15,"2019-20",1610612742,"DAL","203501_2019-20","No Role Available"
202710,"Jimmy Butler",2.52,6,1.09,19,1.42,16,0.41,123,0.39,69,0.01,231,0.86,37,-0.09,313,0.95,16,0.86,74,1.16,9,-0.29,379,1.41,4,0.67,11,0.74,9,2.51,13,1.65,8,0.86,77,"2020-21",1610612748,"MIA","202710_2020-21","Ball Handler, Secondary Playmaker"
101106,"Andrew Bogut",0.63,89,1.73,4,-1.1,465,-0.31,347,0.53,35,-0.83,479,-0.21,313,0.27,116,-0.48,416,0.01,247,0.64,44,-0.63,412,0.12,168,0.43,48,-0.31,413,-0.19,270,1.47,16,-1.67,480,"2016-17",0,"League","101106_2016-17","No Role Available"
1628422,"Damyean Dotson",-1.19,490,-0.18,356,-1.01,505,-0.49,447,-0.03,300,-0.46,483,0.16,195,-0.05,298,0.2,136,-0.37,373,-0.33,405,-0.04,284,-0.3,404,-0.14,363,-0.16,391,-1.17,471,-0.28,379,-0.88,484,"2018-19",1610612752,"NYK","1628422_2018-19","No Role Available"
202695,"Kawhi Leonard",2.59,7,0.68,56,1.92,11,0.56,72,-0.18,349,0.75,29,1.84,3,0.7,35,1.13,6,0.28,160,0.16,168,0.12,194,0.96,8,0.07,166,0.89,2,2.5,14,-0.15,278,2.65,5,"2016-17",1610612759,"SAS","202695_2016-17","No Role Available"
2757,"Beno Udrih",0.43,116,0.6,67,-0.17,276,0.36,113,0.4,67,-0.04,232,-0.21,312,0.21,138,-0.42,405,0.79,67,0.67,37,0.12,195,-0.48,424,-0.22,374,-0.27,398,0.67,109,0.8,62,-0.13,248,"2016-17",1610612765,"DET","2757_2016-17","No Role Available"
1628425,"Sterling Brown",-0.51,409,0.09,215,-0.6,475,-0.14,340,0.44,58,-0.58,514,0.32,132,0.06,223,0.26,122,-0.03,282,-0.44,445,0.42,110,0.03,253,0.1,174,-0.08,353,-0.4,371,0.45,115,-0.85,484,"2017-18",1610612749,"MIL","1628425_2017-18","No Role Available"
1628963,"Marvin Bagley III",0.09,217,-0.31,395,0.4,120,0.01,244,-0.19,398,0.19,153,0.66,70,0.76,31,-0.09,320,0.67,104,-0.12,323,0.78,55,-0.28,418,-0.11,355,-0.17,398,-0.25,321,-0.45,425,0.2,180,"2020-21",1610612758,"SAC","1628963_2020-21","Big, Shooter"
1628444,"Jabari Bird",0.29,152,0.01,272,0.29,129,0.2,157,-0.02,285,0.22,123,0.42,108,0.22,136,0.19,140,0.45,123,0.02,277,0.43,107,-0.12,358,-0.02,300,-0.1,368,0.24,181,0.01,272,0.25,158,"2017-18",1610612738,"BOS","1628444_2017-18","No Role Available"
1628656,"Billy Garrett",0.07,193,0.14,180,-0.07,286,-0.03,279,0.01,267,-0.03,272,0.22,166,0.19,149,0.04,224,-0.03,262,0.27,145,-0.3,383,-0.14,349,-0.12,354,0.01,289,-0.07,270,0.05,218,-0.12,305,"2018-19",1610612752,"NYK","1628656_2018-19","No Role Available"
1628989,"Kevin Huerter",-0.14,300,-0.33,410,0.2,157,0.34,108,-0.25,424,0.59,40,-0.36,412,-0.02,272,-0.35,436,1.65,23,0.58,64,1.08,32,-0.2,367,0.01,265,-0.18,404,0.68,110,-0.27,374,0.95,51,"2018-19",1610612737,"ATL","1628989_2018-19","No Role Available"
201959,"Taj Gibson",0.88,82,0.55,86,0.33,129,0.58,74,0.54,35,0.04,215,0.19,185,0.54,60,-0.36,434,0.84,77,0.46,102,0.38,133,0.54,54,-0.07,320,0.6,18,1.78,38,1.04,38,0.74,95,"2020-21",1610612752,"NYK","201959_2020-21","Big, Finisher"
202696,"Nikola Vucevic",-0.68,393,0.1,185,-0.78,438,-0.26,328,0.13,159,-0.38,409,0.33,118,0.91,18,-0.58,440,-0.05,262,0.38,98,-0.43,376,-0.17,323,0.04,193,-0.2,375,-0.46,329,0.51,109,-0.97,444,"2016-17",1610612753,"ORL","202696_2016-17","No Role Available"
202697,"Iman Shumpert",-0.2,287,-0.63,426,0.42,96,0.15,167,0.04,208,0.11,159,-0.5,403,-0.22,348,-0.28,367,-1.64,476,-0.56,429,-1.09,469,-0.2,336,-0.37,436,0.17,128,-0.6,352,-0.59,397,0.01,211,"2016-17",1610612739,"CLE","202697_2016-17","No Role Available"
1629685,"Dylan Windler",0.39,145,0.06,224,0.33,130,0.08,211,-0.15,367,0.23,138,-0.17,333,-0.09,314,-0.08,308,-0.03,271,-0.06,293,0.03,239,0.15,174,0.18,132,-0.03,303,0.19,206,0.01,258,0.19,183,"2020-21",1610612739,"CLE","1629685_2020-21","Wing, Shooter"
101139,"CJ Miles",0.76,90,0.14,180,0.62,64,0.23,145,0.31,96,-0.09,334,-0.48,446,-0.49,481,0.01,252,-1.74,533,-1.39,534,-0.35,408,0.76,23,0.32,63,0.44,37,0.71,104,0.23,177,0.47,112,"2017-18",1610612761,"TOR","101139_2017-18","No Role Available"
200746,"LaMarcus Aldridge",1.36,42,0.61,64,0.75,62,-0.04,239,0.47,48,-0.51,446,0.17,162,0.1,180,0.07,207,0.46,121,0.46,81,0.01,246,0.8,27,0.04,195,0.76,8,1.08,72,0.82,56,0.26,138,"2016-17",1610612759,"SAS","200746_2016-17","No Role Available"
1630208,"Nick Richards",-0.27,334,-0.22,365,-0.04,264,-0.09,297,0.04,235,-0.13,327,0.1,223,-0.03,268,0.13,192,-0.49,403,-0.47,449,-0.02,271,-0.14,359,-0.12,367,0.01,282,-0.38,349,-0.12,316,-0.26,347,"2020-21",1610612766,"CHA","1630208_2020-21","Big, Finisher"
202330,"Gordon Hayward",-0.77,455,-0.34,409,-0.43,415,0.28,152,0.08,209,0.19,151,0.81,41,0.56,58,0.25,136,-0.77,456,-0.04,279,-0.73,479,0.18,163,0.19,126,0.01,277,0.65,135,0.39,133,0.26,174,"2020-21",1610612766,"CHA","202330_2020-21","Wing, Playmaker"
1628464,"Daniel Theis",0.34,142,0.37,112,-0.03,272,-0.29,404,0.06,212,-0.35,463,-0.98,524,-1.29,538,0.3,100,0.86,66,0.39,101,0.47,99,0.12,197,0.12,159,0.01,278,-0.05,281,0.03,250,-0.08,289,"2017-18",1610612738,"BOS","1628464_2017-18","No Role Available"
202357,"Nemanja Bjelica",0.2,193,-0.41,431,0.6,86,-0.49,439,-0.68,520,0.19,152,0.01,267,0.07,210,-0.06,295,0.3,167,0.55,86,-0.25,366,-0.04,303,-0.23,431,0.19,133,-0.98,449,-1.11,511,0.13,200,"2020-21",1610612758,"SAC","202357_2020-21","Wing, Finisher"
1628990,"Chandler Hutchison",-1.13,484,-0.04,284,-1.09,509,-0.48,444,-0.04,311,-0.43,479,0.32,136,0.32,114,0.01,255,-0.09,291,0.41,99,-0.51,432,0.24,129,0.21,126,0.03,238,-0.53,382,0.31,148,-0.85,478,"2018-19",1610612741,"CHI","1628990_2018-19","No Role Available"
1628969,"Mikal Bridges",1.31,45,0.23,158,1.08,38,0.94,30,0.24,113,0.7,45,-0.09,299,0.39,89,-0.48,475,-0.35,370,-0.67,485,0.31,149,0.42,81,0.39,61,0.04,233,1.95,29,0.63,84,1.32,46,"2020-21",1610612756,"PHX","1628969_2020-21","Wing, Shooter"
1628970,"Miles Bridges",-0.35,365,-0.42,436,0.07,215,0.76,54,-0.12,357,0.88,24,0.1,224,0.26,120,-0.16,354,-0.4,386,-0.86,513,0.45,111,-0.39,456,0.21,117,-0.6,517,0.89,102,0.01,255,0.89,74,"2020-21",1610612766,"CHA","1628970_2020-21","Wing, Shooter"
202722,"Davis Bertans",0.94,74,-0.22,362,1.16,29,0.52,84,0.17,147,0.35,104,-0.29,372,-1.32,538,1.03,12,-0.15,307,-0.07,296,-0.08,290,0.31,110,-0.19,407,0.5,35,1.15,78,-0.32,385,1.47,37,"2020-21",1610612764,"WAS","202722_2020-21","Wing, Shooter"
202699,"Tobias Harris",0.32,136,0.54,78,-0.21,297,0.61,59,0.26,103,0.35,81,-0.23,320,0.29,110,-0.52,425,-0.31,321,0.95,16,-1.26,471,-0.52,433,-0.57,468,0.05,206,0.33,149,0.23,165,0.1,173,"2016-17",1610612765,"DET","202699_2016-17","No Role Available"
202700,"Donatas Motiejunas",-0.23,293,-0.28,343,0.04,188,-0.63,439,-0.59,462,-0.04,233,0.01,234,0.11,174,-0.12,295,0.32,146,0.12,180,0.19,156,-0.15,317,0.07,172,-0.21,380,-1.1,429,-0.92,444,-0.18,280,"2016-17",1610612740,"NOP","202700_2016-17","No Role Available"
1629662,"Mfiondu Kabengele",0.01,244,-0.09,324,0.09,223,0.08,210,-0.03,282,0.11,183,-0.46,433,-0.23,380,-0.24,392,0.26,183,0.22,160,0.04,238,-0.1,327,-0.08,336,-0.02,277,0.01,247,-0.11,307,0.12,212,"2019-20",1610612746,"LAC","1629662_2019-20","No Role Available"
203894,"Shabazz Napier",-0.1,278,0.84,42,-0.94,490,-0.5,446,-0.15,353,-0.36,453,0.48,88,0.22,140,0.26,119,-0.27,332,0.05,247,-0.32,381,0.7,37,0.97,7,-0.27,433,0.08,222,0.84,58,-0.76,454,"2019-20",1610612750,"MIN","203894_2019-20","No Role Available"
203895,"Jordan McRae",-0.65,412,-0.72,464,0.06,231,-0.41,427,-0.29,414,-0.12,341,-0.63,471,-0.89,522,0.25,122,-0.79,443,-0.06,304,-0.73,466,0.65,47,0.12,174,0.53,27,-0.24,319,-0.42,399,0.18,187,"2019-20",1610612764,"WAS","203895_2019-20","No Role Available"
202702,"Kenneth Faried",0.3,141,-0.47,392,0.76,61,-0.25,327,-0.44,438,0.18,132,0.74,49,-0.3,375,1.04,10,1.49,21,0.34,107,1.16,24,-0.54,436,-0.24,391,-0.3,410,-0.04,230,-0.81,428,0.77,72,"2016-17",1610612743,"DEN","202702_2016-17","No Role Available"
1628991,"Jaren Jackson Jr.",-0.81,447,0.56,77,-1.37,519,-0.07,304,0.47,47,-0.54,498,-0.35,404,0.35,104,-0.7,508,-1.47,500,-0.46,436,-1,504,0.17,163,0.39,68,-0.22,417,-0.69,412,1.06,34,-1.75,522,"2018-19",1610612763,"MEM","1628991_2018-19","No Role Available"
202734,"ETwaun Moore",0.04,226,-0.06,293,0.11,207,-0.58,462,-0.24,421,-0.34,435,-0.05,285,0.25,128,-0.3,414,0.03,247,0.24,166,-0.22,349,-0.09,328,0.01,276,-0.08,341,-0.75,418,-0.16,336,-0.59,425,"2020-21",1610612756,"PHX","202734_2020-21","Wing, Shooter"
202738,"Isaiah Thomas",0.21,188,0.06,223,0.14,191,0.09,205,0.13,170,-0.04,260,0.29,151,0.07,204,0.22,146,-0.05,278,-0.39,422,0.34,145,-0.1,339,0.03,231,-0.14,380,0.19,205,0.17,193,0.01,233,"2020-21",1610612740,"NOP","202738_2020-21","No Role Available"
1628975,"Jevon Carter",0.55,114,0.33,129,0.22,160,-0.46,435,-0.21,408,-0.25,397,-0.44,420,-0.06,291,-0.38,447,-0.21,334,0.78,46,-0.99,510,0.91,17,0.12,173,0.78,6,-0.04,257,-0.13,324,0.09,214,"2020-21",1610612756,"PHX","1628975_2020-21","Wing, Shooter"
1628983,"Shai Gilgeous-Alexander",-1.16,495,-1.17,527,0.01,241,0.08,212,-0.37,463,0.45,84,0.23,169,0.26,121,-0.03,282,-1.27,501,0.01,259,-1.27,527,-0.04,301,-0.47,502,0.43,48,-0.27,330,-0.91,494,0.64,108,"2020-21",1610612760,"OKC","1628983_2020-21","Ball Handler, Primary Playmaker"
203897,"Zach LaVine",-0.56,401,-0.89,489,0.34,146,-0.91,504,-0.84,517,-0.07,308,0.4,106,-0.35,430,0.75,24,-0.48,392,-0.92,502,0.44,108,-0.03,292,0.13,167,-0.17,382,-1.35,483,-1.27,506,-0.07,281,"2019-20",1610612741,"CHI","203897_2019-20","No Role Available"
202322,"John Wall",0.57,105,0.3,126,0.28,132,0.64,67,0.35,79,0.29,100,0.77,42,-0.11,354,0.88,22,-1.27,510,-0.92,518,-0.34,407,0.32,107,0.04,221,0.28,87,0.89,89,0.29,156,0.6,95,"2017-18",1610612764,"WAS","202322_2017-18","No Role Available"
1627756,"Denzel Valentine",-0.07,234,0.08,197,-0.15,265,-0.15,278,-0.12,321,-0.03,226,-0.51,408,-0.12,308,-0.39,399,-0.5,355,-0.39,397,-0.11,291,0.43,75,0.38,60,0.05,207,-0.1,247,0.05,210,-0.15,262,"2016-17",1610612741,"CHI","1627756_2016-17","No Role Available"
1627758,"Ron Baker",-0.03,225,0.01,228,-0.05,226,-0.11,263,0.02,225,-0.13,299,0.51,80,0.01,251,0.52,57,-0.04,260,0.01,241,-0.04,266,0.43,78,0.34,69,0.09,185,-0.13,258,0.02,220,-0.16,266,"2016-17",1610612752,"NYK","1627758_2016-17","No Role Available"
202703,"Nikola Mirotic",1.01,59,-0.08,279,1.1,38,0.57,68,0.41,65,0.16,138,0.84,39,-0.11,303,0.95,14,0.39,129,-0.12,299,0.52,84,0.04,219,0.04,190,0.01,245,1.75,34,0.8,61,0.95,56,"2016-17",1610612741,"CHI","202703_2016-17","No Role Available"
1628997,"Caleb Martin",-0.22,320,0.14,183,-0.37,392,-0.45,434,-0.17,386,-0.28,409,0.54,91,0.37,92,0.16,171,-1.06,486,-1.61,537,0.56,87,-0.16,375,0.18,134,-0.34,475,-1.09,465,-0.36,400,-0.73,448,"2020-21",1610612766,"CHA","1628997_2020-21","Wing, Shooter"
1628993,"Alize Johnson",-0.25,338,-0.28,386,0.03,233,-0.06,298,-0.03,298,-0.03,274,-0.08,289,-0.23,401,0.15,157,-0.64,426,-0.73,485,0.09,209,0.23,134,0.01,230,0.22,104,-0.15,296,-0.32,387,0.17,173,"2018-19",1610612754,"IND","1628993_2018-19","No Role Available"
1628469,"Antonio Blakeney",0.22,167,-0.3,405,0.52,81,-0.12,328,-0.12,364,0.01,248,0.01,263,-0.1,344,0.09,190,0.19,202,-0.03,313,0.22,178,0.28,120,-0.23,436,0.51,19,0.23,183,-0.35,402,0.58,100,"2017-18",1610612741,"CHI","1628469_2017-18","No Role Available"
1628372,"Dennis Smith Jr.",-1.99,520,-0.85,484,-1.13,504,-0.97,508,-0.4,454,-0.57,490,-0.35,405,-0.35,431,0.01,256,-0.03,269,-0.12,330,0.08,223,-0.81,506,-0.17,393,-0.63,519,-2.24,519,-0.8,460,-1.44,512,"2019-20",1610612752,"NYK","1628372_2019-20","No Role Available"
203914,"Gary Harris",0.8,88,-0.08,319,0.88,50,0.01,256,0.23,132,-0.23,403,0.06,233,0.05,219,0.01,246,-0.56,403,-0.25,382,-0.3,376,0.56,58,0.4,52,0.16,134,0.57,133,0.75,69,-0.19,324,"2019-20",1610612743,"DEN","203914_2019-20","No Role Available"
203076,"Anthony Davis",1.23,55,0.6,75,0.63,80,0.38,131,0.36,85,0.02,227,0.44,114,0.01,242,0.42,80,1.68,16,0.98,25,0.7,63,0.11,202,-0.2,416,0.31,85,1.16,76,0.67,79,0.49,133,"2020-21",1610612747,"LAL","203076_2020-21","Big, Playmaker"
1628991,"Jaren Jackson Jr.",0.01,240,-0.4,430,0.39,124,-0.57,461,-0.34,455,-0.23,384,-0.2,346,-0.36,440,0.16,177,-0.41,387,-0.54,468,0.13,205,-0.32,434,-0.26,450,-0.06,323,-1.23,482,-0.97,501,-0.26,348,"2020-21",1610612763,"MEM","1628991_2020-21","No Role Available"
1628998,"Cody Martin",0.54,119,-0.06,287,0.59,87,0.27,155,0.14,166,0.13,180,0.97,29,0.17,162,0.8,21,0.07,228,-0.29,392,0.36,138,0.58,46,0.48,40,0.1,184,0.77,115,0.41,126,0.36,161,"2020-21",1610612766,"CHA","1628998_2020-21","Wing, Shooter"
201575,"Brandon Rush",-0.68,394,-0.7,435,0.01,196,0.09,180,-0.02,262,0.12,156,-0.05,252,0.02,228,-0.07,268,-0.66,388,-0.55,427,-0.11,292,-0.4,409,-0.17,348,-0.23,388,-0.2,272,-0.28,324,0.08,182,"2016-17",1610612750,"MIN","201575_2016-17","No Role Available"
1628961,"Kostas Antetokounmpo",-0.03,251,0.04,225,-0.07,290,-0.03,274,0.01,270,-0.02,263,0.09,210,0.01,268,0.1,182,0.18,192,0.13,210,0.06,226,-0.02,279,0.03,222,-0.05,314,0.04,231,0.05,220,0.01,262,"2018-19",1610612742,"DAL","1628961_2018-19","No Role Available"
1629006,"Josh Okogie",0.87,75,0.34,112,0.52,89,-0.72,483,-0.54,492,-0.18,385,0.62,67,0.4,90,0.22,128,1.12,52,0.58,63,0.54,85,0.76,29,0.47,41,0.29,74,0.59,122,0.09,201,0.51,111,"2018-19",1610612750,"MIN","1629006_2018-19","No Role Available"
1628412,"Frank Mason",-0.03,257,0.29,136,-0.32,373,0.39,108,0.35,92,0.04,227,-0.32,388,-0.07,311,-0.25,398,-0.76,439,-0.15,345,-0.6,443,0.06,216,-0.11,357,0.17,132,0.08,223,0.36,158,-0.28,347,"2019-20",1610612749,"MIL","1628412_2019-20","No Role Available"
1629010,"Jerome Robinson",-0.47,397,-0.46,443,0.01,254,-0.1,317,-0.2,403,0.11,171,-0.32,397,-0.59,484,0.27,109,0.23,182,0.31,130,-0.08,305,-0.37,427,-0.36,465,0.01,286,-0.5,373,-0.69,461,0.19,168,"2018-19",1610612746,"LAC","1629010_2018-19","No Role Available"
1629686,"Deividas Sirvydis",-0.64,431,-0.11,314,-0.53,437,-0.3,387,-0.16,383,-0.13,331,0.28,154,0.18,153,0.1,211,-0.33,362,0.16,188,-0.49,425,-0.05,308,-0.08,331,0.03,243,-0.44,359,-0.07,291,-0.37,376,"2020-21",1610612765,"DET","1629686_2020-21","Wing, Shooter"
202331,"Paul George",2.72,3,1.59,4,1.14,32,1.9,6,0.84,9,1.06,11,0.24,165,0.84,27,-0.61,499,0.5,129,0.51,94,0.01,267,0.34,100,0.35,70,0.01,275,3.67,3,2,4,1.67,31,"2020-21",1610612746,"LAC","202331_2020-21","Ball Handler, Secondary Playmaker"
1628418,"Thomas Bryant",-1.23,489,-0.69,461,-0.54,422,0.03,246,-0.11,328,0.14,167,-0.32,390,0.43,67,-0.76,506,-1.11,477,-0.85,496,-0.26,360,-1.05,521,-0.71,517,-0.34,463,-1.2,472,-0.87,469,-0.33,367,"2019-20",1610612764,"WAS","1628418_2019-20","No Role Available"
202334,"Ed Davis",-0.17,307,0.18,173,-0.36,391,-0.31,390,0.22,119,-0.53,487,-0.75,490,-0.59,495,-0.16,348,1.16,48,0.75,50,0.4,124,0.24,136,0.07,203,0.17,140,-0.16,295,0.41,128,-0.56,418,"2020-21",1610612750,"MIN","202334_2020-21","Big, Finisher"
1629001,"DeAnthony Melton",1.52,32,0.84,40,0.68,75,0.59,73,0.58,29,0.01,233,-0.13,319,-0.33,429,0.2,154,0.01,264,-0.21,358,0.2,184,0.91,14,0.23,107,0.69,12,1.86,33,0.94,51,0.92,68,"2020-21",1610612763,"MEM","1629001_2020-21","Wing, Playmaker"
1629002,"Chimezie Metu",-0.56,418,-0.33,400,-0.23,350,-0.05,272,-0.53,500,0.48,76,-0.54,445,-0.2,371,-0.34,426,-0.73,449,-0.4,424,-0.33,386,0.01,265,0.07,208,-0.05,317,-0.61,396,-1.03,503,0.42,145,"2020-21",1610612758,"SAC","1629002_2020-21","Big, Finisher"
1629020,"Jarred Vanderbilt",0.06,201,0.24,141,-0.17,346,0.17,161,0.18,144,0.01,247,-0.02,262,-0.03,283,0.01,245,0.05,230,0.25,148,-0.2,351,0.05,228,0.06,195,0.01,279,0.28,172,0.33,146,-0.04,282,"2018-19",1610612743,"DEN","1629020_2018-19","No Role Available"
101150,"Lou Williams",-0.04,226,-1.28,482,1.25,35,-0.04,242,-0.39,425,0.35,82,0.78,46,-0.06,273,0.83,28,-0.78,420,-0.96,473,0.18,163,-0.24,352,-0.34,431,0.1,177,0.42,141,-1.03,454,1.45,34,"2016-17",0,"League","101150_2016-17","No Role Available"
1626148,"Anthony Brown",-0.02,250,0.01,276,0.01,256,0.03,214,0.01,251,0.03,218,0.01,260,0.01,263,0.01,261,-0.06,300,-0.02,306.5,-0.04,294,0.03,252,0.02,236,0.01,267,0.05,236,0.02,256,0.04,223,"2017-18",1610612750,"MIN","1626148_2017-18","No Role Available"
202696,"Nikola Vucevic",1.1,57,0.49,91,0.61,90,-0.03,273,-0.15,356,0.12,174,1.21,17,1.25,5,-0.04,292,0.07,234,1.16,10,-1.09,504,0.97,11,0.27,91,0.7,11,1.13,69,0.67,80,0.45,127,"2019-20",1610612753,"ORL","202696_2019-20","No Role Available"
202391,"Jeremy Lin",-0.32,356,-0.28,400,-0.05,279,-0.1,318,-0.09,346,0.01,253,0.09,218,0.01,275,0.1,185,-0.04,288,-0.09,342,0.05,235,-0.06,317,0.01,271,-0.06,339,-0.12,305,-0.18,340,0.06,215,"2017-18",1610612751,"BKN","202391_2017-18","No Role Available"
201627,"Anthony Morrow",0.07,195,-0.46,388,0.53,86,-0.22,308,-0.07,291,-0.15,315,-0.5,407,-0.63,445,0.13,174,0.82,63,-0.24,349,1.06,29,-0.32,390,-0.15,337,-0.16,352,-0.26,287,-0.17,283,-0.09,236,"2016-17",0,"League","201627_2016-17","No Role Available"
1629006,"Josh Okogie",-0.31,350,-0.17,345,-0.14,324,-0.49,438,-0.41,473,-0.08,288,0.97,28,0.36,95,0.61,42,-0.84,464,-0.28,386,-0.56,445,0.61,38,0.49,38,0.12,169,-0.21,309,-0.3,378,0.1,210,"2020-21",1610612750,"MIN","1629006_2020-21","Wing, Shooter"
200755,"JJ Redick",0.77,90,-0.2,353,0.97,41,-0.05,269,-0.19,400,0.14,175,0.1,227,0.09,194,0.01,265,0.17,201,0.3,145,-0.13,323,-0.05,307,0.27,90,-0.33,468,-0.03,250,-0.18,345,0.16,192,"2020-21",1610612740,"NOP","200755_2020-21","Wing, Shooter"
1629731,"Dean Wade",-0.58,423,-0.16,339,-0.42,410,-1.13,521,-0.64,515,-0.49,475,0.99,27,0.5,68,0.49,62,-0.98,481,0.01,262,-0.98,509,0.06,238,0.24,103,-0.18,405,-1.61,504,-0.59,451,-1.02,482,"2020-21",1610612739,"CLE","1629731_2020-21","Wing, Shooter"
202355,"Hassan Whiteside",-0.74,446,-0.36,411,-0.39,402,0.29,148,0.25,109,0.03,217,-0.36,400,-0.07,299,-0.29,413,0.01,258,-0.5,458,0.51,98,-0.73,510,-0.33,470,-0.4,487,-0.66,407,-0.11,307,-0.56,417,"2020-21",1610612758,"SAC","202355_2020-21","Big, Playmaker"
1628492,"Gian Clavell",0.06,216,0.12,197,-0.06,286,0.09,191,0.08,198,0.02,225,0.11,211,0.04,228,0.07,200,-0.32,378,0.07,240,-0.39,421,0.18,163,0.16,142,0.03,239,0.28,172,0.25,167,0.03,229,"2017-18",1610612742,"DAL","1628492_2017-18","No Role Available"
203082,"Terrence Ross",-0.33,360,0.06,226,-0.39,405,-0.77,498,-0.05,305,-0.72,516,-0.31,380,-0.32,426,0.02,253,0.17,202,-0.54,466,0.7,62,0.12,192,0.02,252,0.11,180,-1.13,470,-0.11,311,-1.02,480,"2020-21",1610612753,"ORL","203082_2020-21","Wing, Playmaker"
202704,"Reggie Jackson",-0.89,421,-0.37,368,-0.52,393,-1.28,479,-0.82,481,-0.46,436,-0.66,438,0.07,198,-0.74,462,0.67,83,0.61,52,0.06,216,0.36,93,0.12,149,0.25,94,-2.05,472,-1.02,453,-1.04,449,"2016-17",1610612765,"DET","202704_2016-17","No Role Available"
1629109,"Gary Clark",-0.91,455,-0.75,471,-0.16,318,-0.08,288,0.11,187,-0.19,385,-0.29,376,-0.3,412,0.01,247,-0.3,346,-0.79,488,0.49,99,-0.55,475,-0.5,491,-0.04,303,-0.78,424,-0.43,401,-0.35,373,"2019-20",1610612745,"HOU","1629109_2019-20","No Role Available"
202692,"Alec Burks",-0.52,405,-0.08,302,-0.44,416,-0.04,267,0.41,65,-0.45,466,-0.59,459,-0.88,530,0.29,119,1.29,37,1.01,23,0.29,158,0.17,167,-0.13,373,0.3,86,0.66,131,0.59,93,0.07,221,"2020-21",1610612752,"NYK","202692_2020-21","Wing, Shooter"
203086,"Meyers Leonard",-0.03,249,0.09,204,-0.12,316,0.03,234,0.02,247,0.01,234,-0.26,362,-0.18,361,-0.08,310,0.07,226,0.12,200,-0.05,282,-0.07,320,-0.03,295,-0.04,311,-0.11,282,-0.03,276,-0.08,263,"2020-21",1610612748,"MIA","203086_2020-21","Wing, Shooter"
1628493,"Mangok Mathiang",0.14,186,0.06,235,0.08,196,0.08,197,0.09,187,0.01,246,-0.24,369,-0.19,384,-0.04,290,0.12,226,0.16,196,-0.04,296,-0.07,326,-0.03,303,-0.05,325,0.03,244,0.1,220,-0.06,281,"2017-18",1610612766,"CHA","1628493_2017-18","No Role Available"
1628495,"Milton Doyle",-0.12,294,0.09,210,-0.22,364,-0.17,354,-0.07,330,-0.09,338,0.23,163,0.45,63,-0.22,383,0.1,234,0.25,156,-0.15,338,0.22,143,0.17,136,0.05,212,-0.05,278,0.13,207,-0.18,328,"2017-18",1610612751,"BKN","1628495_2017-18","No Role Available"
203960,"JaKarr Sampson",0.35,149,0.34,124,0.01,245,-0.24,370,-0.25,402,0.01,244,-0.51,446,0.05,217,-0.56,479,0.89,74,0.88,25,0.01,248,0.35,109,0.28,85,0.07,200,0.1,217,0.27,181,-0.17,316,"2019-20",1610612754,"IND","203960_2019-20","No Role Available"
1629012,"Collin Sexton",-0.67,434,-0.37,420,-0.3,377,-1.49,535,-0.91,532,-0.58,496,0.09,230,-0.24,390,0.34,106,-0.07,283,-0.42,433,0.36,137,-0.08,326,0.06,211,-0.15,389,-2.22,523,-1.33,523,-0.89,471,"2020-21",1610612739,"CLE","1629012_2020-21","Ball Handler, Primary Playmaker"
1629013,"Landry Shamet",-0.56,420,-0.46,450,-0.1,300,0.82,47,-0.05,307,0.87,26,0.08,237,0.27,119,-0.19,366,-1.69,526,-1.02,522,-0.67,474,-0.62,495,0.01,260,-0.63,520,0.52,148,-0.3,375,0.81,83,"2020-21",1610612751,"BKN","1629013_2020-21","Wing, Shooter"
1629059,"Elie Okobo",-1.09,482,-0.13,338,-0.96,501,-0.77,485,-0.24,420,-0.53,494,0.06,220,-0.1,328,0.17,146,-0.56,409,-0.39,425,-0.17,340,-0.09,319,0.25,106,-0.34,472,-1.3,482,-0.17,336,-1.13,505,"2018-19",1610612756,"PHX","1629059_2018-19","No Role Available"
202130,"Reggie Williams",-0.36,324,-0.13,295,-0.23,305,-0.47,408,-0.22,361,-0.26,370,0.33,120,0.19,144,0.14,167,0.32,145,0.19,156,0.13,184,0.06,199,0.13,147,-0.07,297,-0.52,342,-0.15,275,-0.38,333,"2016-17",1610612740,"NOP","202130_2016-17","No Role Available"
202687,"Bismack Biyombo",-0.95,479,0.04,242,-0.99,513,-1.12,520,-0.34,456,-0.78,520,0.12,211,0.48,71,-0.36,435,1.13,51,0.58,81,0.54,90,-0.75,513,-0.26,448,-0.49,501,-2.17,521,-0.31,383,-1.85,529,"2020-21",1610612766,"CHA","202687_2020-21","Big, Finisher"
202323,"Evan Turner",-0.58,375,0.42,98,-1,459,-0.31,349,0.34,80,-0.65,466,-0.39,379,-0.59,438,0.21,136,-1.12,448,-0.34,378,-0.79,443,-0.23,346,0.03,200,-0.25,395,-1.02,416,0.29,150,-1.31,464,"2016-17",1610612757,"POR","202323_2016-17","No Role Available"
202709,"Cory Joseph",0.23,157,-0.39,375,0.62,79,-0.34,366,-0.22,365,-0.12,286,-0.82,454,-0.46,410,-0.36,393,0.26,167,-0.42,402,0.68,58,0.44,74,0.01,214,0.43,43,-0.39,314,-0.84,433,0.45,112,"2016-17",1610612761,"TOR","202709_2016-17","No Role Available"
202710,"Jimmy Butler",1.71,24,1.04,20,0.67,70,0.56,71,0.64,20,-0.08,265,1.31,17,0.67,41,0.64,43,0.78,68,0.6,54,0.18,160,0.88,20,0.34,71,0.54,24,2.81,10,1.67,9,1.14,48,"2016-17",1610612741,"CHI","202710_2016-17","No Role Available"
202711,"Bojan Bogdanovic",-1.41,468,-0.76,442,-0.65,412,-0.67,444,-0.61,465,-0.06,254,0.34,116,0.21,136,0.13,171,-1.78,479,-0.81,465,-0.97,461,-0.85,470,-0.3,418,-0.54,465,-1.83,465,-1.27,473,-0.56,379,"2016-17",0,"League","202711_2016-17","No Role Available"
202713,"Kyle Singler",-0.1,244,0.07,200,-0.18,282,-0.45,396,0.06,196,-0.51,444,0.31,127,0.06,205,0.24,122,0.61,100,0.47,78,0.14,182,0.43,79,0.2,118,0.22,102,-0.02,223,0.43,121,-0.45,351,"2016-17",1610612760,"OKC","202713_2016-17","No Role Available"
202714,"Shelvin Mack",-0.55,367,-0.09,281,-0.46,380,0.34,118,0.03,216,0.31,94,0.37,109,0.05,217,0.32,100,-0.63,381,-0.65,446,0.02,232,-0.93,476,-0.35,435,-0.58,469,-0.68,366,-0.44,374,-0.24,297,"2016-17",1610612762,"UTA","202714_2016-17","No Role Available"
200782,"P.J. Tucker",0.93,73,0.13,193,0.81,59,0.37,112,0.15,171,0.22,134,0.61,64,0.69,37,-0.07,307,-0.03,265,0.08,233,-0.1,298,-0.04,296,0.01,279,-0.04,297,0.96,84,0.36,159,0.6,102,"2019-20",1610612745,"HOU","200782_2019-20","No Role Available"
203998,"Bruno Caboclo",0.23,180,0.61,75,-0.38,395,-0.56,457,-0.03,284,-0.53,487,-0.17,330,-0.16,355,0.01,266,0.37,160,0.01,276,0.38,123,0.67,41,0.7,15,-0.03,283,-0.23,315,0.47,122,-0.7,439,"2019-20",1610612763,"MEM","203998_2019-20","No Role Available"
202718,"Chandler Parsons",-0.43,337,-0.03,257,-0.39,364,-0.39,381,-0.32,407,-0.07,258,-0.46,394,0.33,102,-0.8,466,-0.85,425,-0.05,270,-0.8,444,0.12,169,0.01,231,0.13,159,-0.7,372,-0.13,268,-0.57,383,"2016-17",1610612763,"MEM","202718_2016-17","No Role Available"
204020,"Tyler Johnson",-0.75,428,-0.24,380,-0.5,416,-0.19,344,0.09,201,-0.28,424,-1.1,515,-0.65,503,-0.45,461,-1.14,481,0.08,234,-1.22,513,-0.03,289,-0.23,417,0.2,119,-1.19,470,-0.31,362,-0.88,469,"2019-20",1610612756,"PHX","204020_2019-20","No Role Available"
1629714,"Jarrell Brantley",-0.72,444,-0.33,407,-0.38,400,-0.02,252,0.01,277,0.01,239,-1.02,516,-0.44,466,-0.57,494,-0.68,443,-0.32,400,-0.36,395,-0.15,364,-0.19,408,0.04,231,-0.53,378,-0.33,391,-0.21,321,"2020-21",1610612762,"UTA","1629714_2020-21","Wing, Shooter"
1713,"Vince Carter",-0.59,421,0.2,156,-0.79,484,-0.23,374,-0.13,361,-0.1,330,-1.09,517,-1.09,523,0.01,253,-1.77,515,-0.2,370,-1.57,525,0.61,39,0.68,15,-0.08,334,-0.8,427,0.22,162,-1.02,498,"2018-19",1610612737,"ATL","1713_2018-19","No Role Available"
203114,"Khris Middleton",1.57,28,0.78,48,0.79,64,0.44,106,-0.03,286,0.47,80,0.15,199,0.63,50,-0.48,476,1.24,40,1.21,8,0.03,238,-0.4,459,-0.75,530,0.36,71,0.86,108,-0.12,319,0.98,62,"2020-21",1610612749,"MIL","203114_2020-21","Ball Handler, Secondary Playmaker"