For this assignment I used a data set consisting of NBA player data, which I also used on the first two assignments. I am presenting information specifically on 3-point shooting and how those numbers have changed over the years. This table is filtered to include only players that took greater than 150 3-point shots in a season and made at least 40% of those shots. The 3-point shot was introduced in 1980, and one of my goals with this table is to show how rare it was for a player to shoot a high volume and percentage of 3-pointers in the 80s compared to how commonplace it is in recent seasons. The table is quite long, so I included fixed headers, and I enabled highlighting of rows to ensure that it’s easier to keep track of the data as the user is scrolling.
nba_stats <- read.csv("nba stats csv.csv")
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4
## ✔ tibble 3.1.8 ✔ dplyr 1.0.9
## ✔ tidyr 1.2.0 ✔ stringr 1.4.1
## ✔ readr 2.1.2 ✔ forcats 0.5.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
library(knitr)
#first5 <- head((nba_stats), n=5)
#kable(first5)
library(kableExtra)
##
## Attaching package: 'kableExtra'
##
## The following object is masked from 'package:dplyr':
##
## group_rows
#kbl(first5)
#tbl_first5 <- first5 %>%
# select(Year, Player, X3P, X3PA, X3P., USG., WS) %>%
# kbl(col.names = c("Year",
# "Player",
# "3-point Makes",
# "3-point Attempts",
# "3-point Percentage",
# "Usage Rate",
# "Win Shares")) %>%
# kable_styling(font_size=18)
#tbl_first5
nba_data_3 <- subset(nba_stats, Year>1979)
nba_data_3_attempts <- subset(nba_data_3, X3PA>150)
nba_data_3_top <- subset(nba_data_3_attempts, X3P.>.4)
#head(nba_data_3_top)
averages <- nba_data_3 %>%
group_by(Year) %>%
summarise_each(funs(mean))
## Warning: `summarise_each_()` was deprecated in dplyr 0.7.0.
## Please use `across()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
## Warning: `funs()` was deprecated in dplyr 0.8.0.
## Please use a list of either functions or lambdas:
##
## # Simple named list:
## list(mean = mean, median = median)
##
## # Auto named with `tibble::lst()`:
## tibble::lst(mean, median)
##
## # Using lambdas
## list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Player): argument is not numeric or logical: returning
## NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Pos): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
## Warning in mean.default(Tm): argument is not numeric or logical: returning NA
#averages
averages_simple <- averages %>%
mutate('X3P.' = X3P/X3PA)
#averages_simple
three_averages <- subset(averages_simple, select = c('Year', 'X3PA', 'X3P.'))
three_averages_names <- rename(three_averages, 'X3PA.mean' = X3PA, 'X3P.mean' = X3P.)
#head(three_averages_names)
nba_data_3_w_avg <- right_join(three_averages_names, nba_data_3_top)
## Joining, by = "Year"
#head(nba_data_3_w_avg)
tbl_3data <- nba_data_3_w_avg %>%
select(Year, Player, X3P, X3PA, X3PA.mean, X3P., X3P.mean) %>%
kbl(col.names = c("Year",
"Player",
"3-point Makes",
"3-point Attempts",
"Average Attempts for that Year",
"3-point Percentage",
"Average 3-point Percentage for that Year")) %>%
kable_styling(font_size=18)
#tbl_3data
tbl_3data %>%
kable_paper(lightable_options = "hover", full_width = FALSE) %>%
kable_styling(fixed_thead = TRUE)
Year | Player | 3-point Makes | 3-point Attempts | Average Attempts for that Year | 3-point Percentage | Average 3-point Percentage for that Year |
---|---|---|---|---|---|---|
1980 | Chris Ford | 70 | 164 | 15.46779 | 0.427 | 0.2826874 |
1986 | Larry Bird* | 82 | 194 | 17.61741 | 0.423 | 0.2824622 |
1986 | World B. | 71 | 169 | 17.61741 | 0.420 | 0.2824622 |
1986 | Craig Hodges | 73 | 162 | 17.61741 | 0.451 | 0.2824622 |
1987 | Danny Ainge | 85 | 192 | 24.27778 | 0.443 | 0.2999891 |
1987 | Trent Tucker | 68 | 161 | 24.27778 | 0.422 | 0.2999891 |
1988 | Danny Ainge | 148 | 357 | 25.19953 | 0.415 | 0.3197951 |
1988 | Larry Bird* | 98 | 237 | 25.19953 | 0.414 | 0.3197951 |
1988 | Dale Ellis | 107 | 259 | 25.19953 | 0.413 | 0.3197951 |
1988 | Gerald Henderson | 69 | 163 | 25.19953 | 0.423 | 0.3197951 |
1988 | Gerald Henderson | 67 | 159 | 25.19953 | 0.421 | 0.3197951 |
1988 | Craig Hodges | 86 | 175 | 25.19953 | 0.491 | 0.3197951 |
1988 | Trent Tucker | 69 | 167 | 25.19953 | 0.413 | 0.3197951 |
1989 | Ricky Berry | 65 | 160 | 33.09589 | 0.406 | 0.3227097 |
1989 | Dale Ellis | 162 | 339 | 33.09589 | 0.478 | 0.3227097 |
1989 | Hersey Hawkins | 71 | 166 | 33.09589 | 0.428 | 0.3227097 |
1989 | Craig Hodges | 75 | 180 | 33.09589 | 0.417 | 0.3227097 |
1989 | Craig Hodges | 71 | 168 | 33.09589 | 0.423 | 0.3227097 |
1989 | Eddie Johnson | 71 | 172 | 33.09589 | 0.413 | 0.3227097 |
1989 | Reggie Miller* | 98 | 244 | 33.09589 | 0.402 | 0.3227097 |
1989 | Harold Pressley | 119 | 295 | 33.09589 | 0.403 | 0.3227097 |
1989 | Mark Price | 93 | 211 | 33.09589 | 0.441 | 0.3227097 |
1990 | Craig Ehlo | 104 | 248 | 33.46623 | 0.419 | 0.3287546 |
1990 | Hersey Hawkins | 84 | 200 | 33.46623 | 0.420 | 0.3287546 |
1990 | Craig Hodges | 87 | 181 | 33.46623 | 0.481 | 0.3287546 |
1990 | Reggie Miller* | 150 | 362 | 33.46623 | 0.414 | 0.3287546 |
1990 | Mark Price | 152 | 374 | 33.46623 | 0.406 | 0.3287546 |
1990 | Byron Scott | 93 | 220 | 33.46623 | 0.423 | 0.3287546 |
1991 | Danny Ainge | 102 | 251 | 37.61224 | 0.406 | 0.3199494 |
1991 | Jim Les | 71 | 154 | 37.61224 | 0.461 | 0.3199494 |
1991 | Terry Porter | 130 | 313 | 37.61224 | 0.415 | 0.3199494 |
1991 | Scott Skiles | 93 | 228 | 37.61224 | 0.408 | 0.3199494 |
1991 | Trent Tucker | 64 | 153 | 37.61224 | 0.418 | 0.3199494 |
1992 | Dana Barros | 83 | 186 | 38.06332 | 0.446 | 0.3290311 |
1992 | Dell Curry | 74 | 183 | 38.06332 | 0.404 | 0.3290311 |
1992 | Craig Ehlo | 69 | 167 | 38.06332 | 0.413 | 0.3290311 |
1992 | Dale Ellis | 138 | 329 | 38.06332 | 0.419 | 0.3290311 |
1992 | Jeff Hornacek | 83 | 189 | 38.06332 | 0.439 | 0.3290311 |
1992 | Drazen Petrovic* | 123 | 277 | 38.06332 | 0.444 | 0.3290311 |
1992 | John Stockton* | 83 | 204 | 38.06332 | 0.407 | 0.3290311 |
1993 | Danny Ainge | 150 | 372 | 45.39866 | 0.403 | 0.3353611 |
1993 | Dell Curry | 95 | 237 | 45.39866 | 0.401 | 0.3353611 |
1993 | Dale Ellis | 119 | 297 | 45.39866 | 0.401 | 0.3353611 |
1993 | Jim Les | 66 | 154 | 45.39866 | 0.429 | 0.3353611 |
1993 | Drazen Petrovic* | 75 | 167 | 45.39866 | 0.449 | 0.3353611 |
1993 | Terry Porter | 143 | 345 | 45.39866 | 0.414 | 0.3353611 |
1993 | Mark Price | 122 | 293 | 45.39866 | 0.416 | 0.3353611 |
1993 | Dennis Scott | 108 | 268 | 45.39866 | 0.403 | 0.3353611 |
1993 | Kenny Smith | 96 | 219 | 45.39866 | 0.438 | 0.3353611 |
1994 | Dell Curry | 152 | 378 | 47.88150 | 0.402 | 0.3319873 |
1994 | Reggie Miller* | 123 | 292 | 47.88150 | 0.421 | 0.3319873 |
1994 | Eric Murdock | 69 | 168 | 47.88150 | 0.411 | 0.3319873 |
1994 | Mitch Richmond* | 127 | 312 | 47.88150 | 0.407 | 0.3319873 |
1994 | Scott Skiles | 68 | 165 | 47.88150 | 0.412 | 0.3319873 |
1994 | Kenny Smith | 89 | 220 | 47.88150 | 0.405 | 0.3319873 |
1995 | Nick Anderson | 179 | 431 | 79.36726 | 0.415 | 0.3570552 |
1995 | B.J. Armstrong | 108 | 253 | 79.36726 | 0.427 | 0.3570552 |
1995 | Dana Barros | 197 | 425 | 79.36726 | 0.464 | 0.3570552 |
1995 | Scott Burrell | 96 | 235 | 79.36726 | 0.409 | 0.3570552 |
1995 | Dell Curry | 154 | 361 | 79.36726 | 0.427 | 0.3570552 |
1995 | Hubert Davis | 131 | 288 | 79.36726 | 0.455 | 0.3570552 |
1995 | Vinny Del | 66 | 162 | 79.36726 | 0.407 | 0.3570552 |
1995 | Sean Elliott | 136 | 333 | 79.36726 | 0.408 | 0.3570552 |
1995 | Dale Ellis | 106 | 263 | 79.36726 | 0.403 | 0.3570552 |
1995 | Danny Ferry | 94 | 233 | 79.36726 | 0.403 | 0.3570552 |
1995 | Hersey Hawkins | 131 | 298 | 79.36726 | 0.440 | 0.3570552 |
1995 | Jeff Hornacek | 89 | 219 | 79.36726 | 0.406 | 0.3570552 |
1995 | Allan Houston | 158 | 373 | 79.36726 | 0.424 | 0.3570552 |
1995 | Steve Kerr | 89 | 170 | 79.36726 | 0.524 | 0.3570552 |
1995 | Brad Lohaus | 63 | 155 | 79.36726 | 0.406 | 0.3570552 |
1995 | Lee Mayberry | 72 | 177 | 79.36726 | 0.407 | 0.3570552 |
1995 | Reggie Miller* | 195 | 470 | 79.36726 | 0.415 | 0.3570552 |
1995 | Wesley Person | 116 | 266 | 79.36726 | 0.436 | 0.3570552 |
1995 | Mark Price | 103 | 253 | 79.36726 | 0.407 | 0.3570552 |
1995 | Glen Rice | 185 | 451 | 79.36726 | 0.410 | 0.3570552 |
1995 | Detlef Schrempf | 93 | 181 | 79.36726 | 0.514 | 0.3570552 |
1995 | Dennis Scott | 150 | 352 | 79.36726 | 0.426 | 0.3570552 |
1995 | Scott Skiles | 96 | 228 | 79.36726 | 0.421 | 0.3570552 |
1995 | Kenny Smith | 142 | 331 | 79.36726 | 0.429 | 0.3570552 |
1995 | John Stockton* | 102 | 227 | 79.36726 | 0.449 | 0.3570552 |
1996 | B.J. Armstrong | 98 | 207 | 76.21101 | 0.473 | 0.3650656 |
1996 | Keith Askins | 99 | 237 | 76.21101 | 0.418 | 0.3650656 |
1996 | Dana Barros | 150 | 368 | 76.21101 | 0.408 | 0.3650656 |
1996 | Brent Barry | 123 | 296 | 76.21101 | 0.416 | 0.3650656 |
1996 | Dell Curry | 164 | 406 | 76.21101 | 0.404 | 0.3650656 |
1996 | Hubert Davis | 127 | 267 | 76.21101 | 0.476 | 0.3650656 |
1996 | Terry Dehere | 139 | 316 | 76.21101 | 0.440 | 0.3650656 |
1996 | Joe Dumars* | 121 | 298 | 76.21101 | 0.406 | 0.3650656 |
1996 | Sean Elliott | 161 | 392 | 76.21101 | 0.411 | 0.3650656 |
1996 | Dale Ellis | 150 | 364 | 76.21101 | 0.412 | 0.3650656 |
1996 | Jeff Hornacek | 104 | 223 | 76.21101 | 0.466 | 0.3650656 |
1996 | Allan Houston | 191 | 447 | 76.21101 | 0.427 | 0.3650656 |
1996 | Lindsey Hunter | 117 | 289 | 76.21101 | 0.405 | 0.3650656 |
1996 | Michael Jordan* | 111 | 260 | 76.21101 | 0.427 | 0.3650656 |
1996 | Steve Kerr | 122 | 237 | 76.21101 | 0.515 | 0.3650656 |
1996 | Toni Kukoc | 87 | 216 | 76.21101 | 0.403 | 0.3650656 |
1996 | Tim Legler | 128 | 245 | 76.21101 | 0.522 | 0.3650656 |
1996 | Sarunas Marciulionis* | 64 | 157 | 76.21101 | 0.408 | 0.3650656 |
1996 | Reggie Miller* | 168 | 410 | 76.21101 | 0.410 | 0.3650656 |
1996 | Tracy Murray | 151 | 358 | 76.21101 | 0.422 | 0.3650656 |
1996 | Anthony Peeler | 105 | 254 | 76.21101 | 0.413 | 0.3650656 |
1996 | Chuck Person | 190 | 463 | 76.21101 | 0.410 | 0.3650656 |
1996 | Bobby Phills | 93 | 211 | 76.21101 | 0.441 | 0.3650656 |
1996 | Brent Price | 139 | 301 | 76.21101 | 0.462 | 0.3650656 |
1996 | Eldridge Recasner | 81 | 191 | 76.21101 | 0.424 | 0.3650656 |
1996 | Glen Rice | 171 | 403 | 76.21101 | 0.424 | 0.3650656 |
1996 | Mitch Richmond* | 225 | 515 | 76.21101 | 0.437 | 0.3650656 |
1996 | Detlef Schrempf | 73 | 179 | 76.21101 | 0.408 | 0.3650656 |
1996 | Dennis Scott | 267 | 628 | 76.21101 | 0.425 | 0.3650656 |
1996 | John Stockton* | 95 | 225 | 76.21101 | 0.422 | 0.3650656 |
1996 | David Wesley | 116 | 272 | 76.21101 | 0.426 | 0.3650656 |
1997 | Keith Askins | 69 | 172 | 76.67422 | 0.401 | 0.3591375 |
1997 | Dell Curry | 126 | 296 | 76.67422 | 0.426 | 0.3591375 |
1997 | Joe Dumars* | 166 | 384 | 76.67422 | 0.432 | 0.3591375 |
1997 | Mario Elie | 120 | 286 | 76.67422 | 0.420 | 0.3591375 |
1997 | Danny Ferry | 114 | 284 | 76.67422 | 0.401 | 0.3591375 |
1997 | Anthony Goldwire | 64 | 153 | 76.67422 | 0.418 | 0.3591375 |
1997 | Hersey Hawkins | 143 | 355 | 76.67422 | 0.403 | 0.3591375 |
1997 | Henry James | 76 | 181 | 76.67422 | 0.420 | 0.3591375 |
1997 | Kevin Johnson | 89 | 202 | 76.67422 | 0.441 | 0.3591375 |
1997 | Steve Kerr | 110 | 237 | 76.67422 | 0.464 | 0.3591375 |
1997 | Voshon Lenard | 183 | 442 | 76.67422 | 0.414 | 0.3591375 |
1997 | Matt Maloney | 154 | 381 | 76.67422 | 0.404 | 0.3591375 |
1997 | Reggie Miller* | 229 | 536 | 76.67422 | 0.427 | 0.3591375 |
1997 | Terry Mills | 175 | 415 | 76.67422 | 0.422 | 0.3591375 |
1997 | Chris Mullin* | 83 | 202 | 76.67422 | 0.411 | 0.3591375 |
1997 | Wesley Person | 171 | 414 | 76.67422 | 0.413 | 0.3591375 |
1997 | Glen Rice | 207 | 440 | 76.67422 | 0.470 | 0.3591375 |
1997 | Mitch Richmond* | 204 | 477 | 76.67422 | 0.428 | 0.3591375 |
1997 | Bryon Russell | 108 | 264 | 76.67422 | 0.409 | 0.3591375 |
1997 | John Stockton* | 76 | 180 | 76.67422 | 0.422 | 0.3591375 |
1998 | Greg Anthony | 66 | 159 | 62.20475 | 0.415 | 0.3440310 |
1998 | Dana Barros | 100 | 246 | 62.20475 | 0.407 | 0.3440310 |
1998 | Dee Brown | 65 | 158 | 62.20475 | 0.411 | 0.3440310 |
1998 | Matt Bullard | 96 | 231 | 62.20475 | 0.416 | 0.3440310 |
1998 | Hubert Davis | 101 | 230 | 62.20475 | 0.439 | 0.3440310 |
1998 | Dale Ellis | 127 | 274 | 62.20475 | 0.464 | 0.3440310 |
1998 | Hersey Hawkins | 125 | 301 | 62.20475 | 0.415 | 0.3440310 |
1998 | Kerry Kittles | 110 | 263 | 62.20475 | 0.418 | 0.3440310 |
1998 | Voshon Lenard | 153 | 378 | 62.20475 | 0.405 | 0.3440310 |
1998 | Sam Mack | 110 | 269 | 62.20475 | 0.409 | 0.3440310 |
1998 | Reggie Miller* | 164 | 382 | 62.20475 | 0.429 | 0.3440310 |
1998 | Chris Mullin* | 107 | 243 | 62.20475 | 0.440 | 0.3440310 |
1998 | Steve Nash | 81 | 195 | 62.20475 | 0.415 | 0.3440310 |
1998 | Wesley Person | 192 | 447 | 62.20475 | 0.430 | 0.3440310 |
1998 | Eric Piatkowski | 106 | 259 | 62.20475 | 0.409 | 0.3440310 |
1998 | Glen Rice | 130 | 300 | 62.20475 | 0.433 | 0.3440310 |
1999 | Michael Dickerson | 71 | 164 | 39.96252 | 0.433 | 0.3392725 |
1999 | Joe Dumars* | 89 | 221 | 39.96252 | 0.403 | 0.3392725 |
1999 | Dale Ellis | 94 | 217 | 39.96252 | 0.433 | 0.3392725 |
1999 | George McCloud | 69 | 166 | 39.96252 | 0.416 | 0.3392725 |
1999 | Chris Mullin* | 73 | 157 | 39.96252 | 0.465 | 0.3392725 |
1999 | Paul Pierce | 84 | 204 | 39.96252 | 0.412 | 0.3392725 |
2000 | Ray Allen | 172 | 407 | 68.12903 | 0.423 | 0.3515033 |
2000 | Brent Barry | 164 | 399 | 68.12903 | 0.411 | 0.3515033 |
2000 | Jon Barry | 66 | 154 | 68.12903 | 0.429 | 0.3515033 |
2000 | Matt Bullard | 79 | 177 | 68.12903 | 0.446 | 0.3515033 |
2000 | Vince Carter | 95 | 236 | 68.12903 | 0.403 | 0.3515033 |
2000 | Hubert Davis | 82 | 167 | 68.12903 | 0.491 | 0.3515033 |
2000 | Michael Dickerson | 119 | 291 | 68.12903 | 0.409 | 0.3515033 |
2000 | Michael Finley | 99 | 247 | 68.12903 | 0.401 | 0.3515033 |
2000 | Pat Garrity | 79 | 197 | 68.12903 | 0.401 | 0.3515033 |
2000 | Allan Houston | 106 | 243 | 68.12903 | 0.436 | 0.3515033 |
2000 | Lindsey Hunter | 168 | 389 | 68.12903 | 0.432 | 0.3515033 |
2000 | Mark Jackson | 89 | 221 | 68.12903 | 0.403 | 0.3515033 |
2000 | Jamal Mashburn | 112 | 278 | 68.12903 | 0.403 | 0.3515033 |
2000 | Reggie Miller* | 165 | 404 | 68.12903 | 0.408 | 0.3515033 |
2000 | Tracy Murray | 113 | 263 | 68.12903 | 0.430 | 0.3515033 |
2000 | Sam Perkins | 89 | 218 | 68.12903 | 0.408 | 0.3515033 |
2000 | Wesley Person | 106 | 250 | 68.12903 | 0.424 | 0.3515033 |
2000 | Terry Porter | 90 | 207 | 68.12903 | 0.435 | 0.3515033 |
2000 | Rodney Rogers | 115 | 262 | 68.12903 | 0.439 | 0.3515033 |
2001 | Ray Allen | 202 | 467 | 63.85475 | 0.433 | 0.3524934 |
2001 | Greg Anthony | 65 | 159 | 63.85475 | 0.409 | 0.3524934 |
2001 | Brent Barry | 109 | 229 | 63.85475 | 0.476 | 0.3524934 |
2001 | Matt Bullard | 86 | 213 | 63.85475 | 0.404 | 0.3524934 |
2001 | Vince Carter | 162 | 397 | 63.85475 | 0.408 | 0.3524934 |
2001 | Antonio Daniels | 74 | 183 | 63.85475 | 0.404 | 0.3524934 |
2001 | Hubert Davis | 78 | 171 | 63.85475 | 0.456 | 0.3524934 |
2001 | Danny Ferry | 70 | 156 | 63.85475 | 0.449 | 0.3524934 |
2001 | Pat Garrity | 97 | 224 | 63.85475 | 0.433 | 0.3524934 |
2001 | Fred Hoiberg | 103 | 250 | 63.85475 | 0.412 | 0.3524934 |
2001 | Toni Kukoc | 70 | 157 | 63.85475 | 0.446 | 0.3524934 |
2001 | Rashard Lewis | 123 | 285 | 63.85475 | 0.432 | 0.3524934 |
2001 | Mike Miller | 148 | 364 | 63.85475 | 0.407 | 0.3524934 |
2001 | Steve Nash | 89 | 219 | 63.85475 | 0.406 | 0.3524934 |
2001 | Eric Piatkowski | 120 | 297 | 63.85475 | 0.404 | 0.3524934 |
2001 | Terry Porter | 87 | 205 | 63.85475 | 0.424 | 0.3524934 |
2001 | Bryon Russell | 95 | 230 | 63.85475 | 0.413 | 0.3524934 |
2001 | Tim Thomas | 107 | 260 | 63.85475 | 0.412 | 0.3524934 |
2002 | Ray Allen | 229 | 528 | 75.03400 | 0.434 | 0.3526401 |
2002 | Chucky Atkins | 138 | 336 | 75.03400 | 0.411 | 0.3526401 |
2002 | Brent Barry | 164 | 387 | 75.03400 | 0.424 | 0.3526401 |
2002 | Jon Barry | 121 | 258 | 75.03400 | 0.469 | 0.3526401 |
2002 | Derek Fisher | 144 | 349 | 75.03400 | 0.413 | 0.3526401 |
2002 | Pat Garrity | 169 | 396 | 75.03400 | 0.427 | 0.3526401 |
2002 | Mark Jackson | 79 | 195 | 75.03400 | 0.405 | 0.3526401 |
2002 | Kerry Kittles | 98 | 242 | 75.03400 | 0.405 | 0.3526401 |
2002 | Raef LaFrentz | 75 | 173 | 75.03400 | 0.434 | 0.3526401 |
2002 | Reggie Miller* | 180 | 443 | 75.03400 | 0.406 | 0.3526401 |
2002 | Lamond Murray | 101 | 238 | 75.03400 | 0.424 | 0.3526401 |
2002 | Steve Nash | 156 | 343 | 75.03400 | 0.455 | 0.3526401 |
2002 | Wesley Person | 143 | 322 | 75.03400 | 0.444 | 0.3526401 |
2002 | Eric Piatkowski | 111 | 238 | 75.03400 | 0.466 | 0.3526401 |
2002 | Paul Pierce | 210 | 520 | 75.03400 | 0.404 | 0.3526401 |
2002 | Vladimir Radmanovic | 66 | 157 | 75.03400 | 0.420 | 0.3526401 |
2002 | Michael Redd | 88 | 198 | 75.03400 | 0.444 | 0.3526401 |
2002 | Steve Smith | 116 | 246 | 75.03400 | 0.472 | 0.3526401 |
2002 | Peja Stojakovic | 129 | 310 | 75.03400 | 0.416 | 0.3526401 |
2002 | Wally Szczerbiak | 87 | 191 | 75.03400 | 0.455 | 0.3526401 |
2002 | Chris Whitney | 131 | 323 | 75.03400 | 0.406 | 0.3526401 |
2002 | Walt Williams | 78 | 183 | 75.03400 | 0.426 | 0.3526401 |
2003 | Brent Barry | 118 | 293 | 76.81366 | 0.403 | 0.3485890 |
2003 | Jon Barry | 87 | 214 | 76.81366 | 0.407 | 0.3485890 |
2003 | Bruce Bowen | 101 | 229 | 76.81366 | 0.441 | 0.3485890 |
2003 | Derek Fisher | 85 | 212 | 76.81366 | 0.401 | 0.3485890 |
2003 | Matt Harpring | 66 | 160 | 76.81366 | 0.413 | 0.3485890 |
2003 | Eddie Jones | 98 | 241 | 76.81366 | 0.407 | 0.3485890 |
2003 | Steve Nash | 111 | 269 | 76.81366 | 0.413 | 0.3485890 |
2003 | Anthony Peeler | 87 | 212 | 76.81366 | 0.410 | 0.3485890 |
2003 | Wesley Person | 100 | 231 | 76.81366 | 0.433 | 0.3485890 |
2003 | Michael Redd | 182 | 416 | 76.81366 | 0.438 | 0.3485890 |
2003 | David Wesley | 134 | 316 | 76.81366 | 0.424 | 0.3485890 |
2004 | Brent Barry | 114 | 252 | 67.87692 | 0.452 | 0.3472600 |
2004 | Michael Finley | 150 | 370 | 67.87692 | 0.405 | 0.3472600 |
2004 | Fred Hoiberg | 76 | 172 | 67.87692 | 0.442 | 0.3472600 |
2004 | Allan Houston | 87 | 202 | 67.87692 | 0.431 | 0.3472600 |
2004 | Casey Jacobsen | 75 | 180 | 67.87692 | 0.417 | 0.3472600 |
2004 | Donyell Marshall | 131 | 325 | 67.87692 | 0.403 | 0.3472600 |
2004 | Donyell Marshall | 120 | 298 | 67.87692 | 0.403 | 0.3472600 |
2004 | Aaron McKie | 75 | 172 | 67.87692 | 0.436 | 0.3472600 |
2004 | Reggie Miller* | 134 | 334 | 67.87692 | 0.401 | 0.3472600 |
2004 | Steve Nash | 104 | 257 | 67.87692 | 0.405 | 0.3472600 |
2004 | Peja Stojakovic | 240 | 554 | 67.87692 | 0.433 | 0.3472600 |
2004 | Hedo Turkoglu | 101 | 241 | 67.87692 | 0.419 | 0.3472600 |
2004 | Charlie Ward | 84 | 206 | 67.87692 | 0.408 | 0.3472600 |
2005 | Jon Barry | 71 | 165 | 75.05299 | 0.430 | 0.3562839 |
2005 | Chauncey Billups | 165 | 387 | 75.05299 | 0.426 | 0.3562839 |
2005 | Bruce Bowen | 102 | 253 | 75.05299 | 0.403 | 0.3562839 |
2005 | Vince Carter | 127 | 313 | 75.05299 | 0.406 | 0.3562839 |
2005 | Vince Carter | 108 | 254 | 75.05299 | 0.425 | 0.3562839 |
2005 | Michael Finley | 116 | 285 | 75.05299 | 0.407 | 0.3562839 |
2005 | Ben Gordon | 134 | 331 | 75.05299 | 0.405 | 0.3562839 |
2005 | Jim Jackson | 122 | 295 | 75.05299 | 0.414 | 0.3562839 |
2005 | Joe Johnson | 177 | 370 | 75.05299 | 0.478 | 0.3562839 |
2005 | Damon Jones | 225 | 521 | 75.05299 | 0.432 | 0.3562839 |
2005 | Jason Kapono | 80 | 194 | 75.05299 | 0.412 | 0.3562839 |
2005 | Kyle Korver | 226 | 558 | 75.05299 | 0.405 | 0.3562839 |
2005 | Donyell Marshall | 151 | 363 | 75.05299 | 0.416 | 0.3562839 |
2005 | Mike Miller | 140 | 323 | 75.05299 | 0.433 | 0.3562839 |
2005 | Cuttino Mobley | 150 | 342 | 75.05299 | 0.439 | 0.3562839 |
2005 | Cuttino Mobley | 92 | 217 | 75.05299 | 0.424 | 0.3562839 |
2005 | Steve Nash | 94 | 218 | 75.05299 | 0.431 | 0.3562839 |
2005 | Peja Stojakovic | 174 | 433 | 75.05299 | 0.402 | 0.3562839 |
2005 | Jason Terry | 103 | 245 | 75.05299 | 0.420 | 0.3562839 |
2005 | Tim Thomas | 85 | 208 | 75.05299 | 0.409 | 0.3562839 |
2006 | Ray Allen | 269 | 653 | 76.19538 | 0.412 | 0.3572428 |
2006 | Leandro Barbosa | 87 | 196 | 76.19538 | 0.444 | 0.3572428 |
2006 | Charlie Bell | 71 | 168 | 76.19538 | 0.423 | 0.3572428 |
2006 | Raja Bell | 197 | 446 | 76.19538 | 0.442 | 0.3572428 |
2006 | Chauncey Billups | 184 | 425 | 76.19538 | 0.433 | 0.3572428 |
2006 | Steve Blake | 76 | 184 | 76.19538 | 0.413 | 0.3572428 |
2006 | Matt Bonner | 102 | 243 | 76.19538 | 0.420 | 0.3572428 |
2006 | Bruce Bowen | 104 | 245 | 76.19538 | 0.424 | 0.3572428 |
2006 | Ben Gordon | 166 | 382 | 76.19538 | 0.435 | 0.3572428 |
2006 | Mike James | 169 | 382 | 76.19538 | 0.442 | 0.3572428 |
2006 | Kyle Korver | 184 | 438 | 76.19538 | 0.420 | 0.3572428 |
2006 | Mike Miller | 138 | 339 | 76.19538 | 0.407 | 0.3572428 |
2006 | Steve Nash | 150 | 342 | 76.19538 | 0.439 | 0.3572428 |
2006 | Jameer Nelson | 70 | 165 | 76.19538 | 0.424 | 0.3572428 |
2006 | Dirk Nowitzki | 110 | 271 | 76.19538 | 0.406 | 0.3572428 |
2006 | James Posey | 117 | 290 | 76.19538 | 0.403 | 0.3572428 |
2006 | Vladimir Radmanovic | 66 | 158 | 76.19538 | 0.418 | 0.3572428 |
2006 | Bobby Simmons | 105 | 250 | 76.19538 | 0.420 | 0.3572428 |
2006 | Peja Stojakovic | 162 | 404 | 76.19538 | 0.401 | 0.3572428 |
2006 | Peja Stojakovic | 91 | 225 | 76.19538 | 0.404 | 0.3572428 |
2006 | Jason Terry | 171 | 416 | 76.19538 | 0.411 | 0.3572428 |
2006 | Hedo Turkoglu | 114 | 283 | 76.19538 | 0.403 | 0.3572428 |
2006 | Earl Watson | 110 | 272 | 76.19538 | 0.404 | 0.3572428 |
2006 | Deron Williams | 91 | 219 | 76.19538 | 0.416 | 0.3572428 |
2007 | Leandro Barbosa | 190 | 438 | 85.79264 | 0.434 | 0.3574736 |
2007 | Brent Barry | 128 | 287 | 85.79264 | 0.446 | 0.3574736 |
2007 | Shane Battier | 157 | 373 | 85.79264 | 0.421 | 0.3574736 |
2007 | Raja Bell | 205 | 496 | 85.79264 | 0.413 | 0.3574736 |
2007 | Matt Carroll | 111 | 267 | 85.79264 | 0.416 | 0.3574736 |
2007 | Ben Gordon | 155 | 375 | 85.79264 | 0.413 | 0.3574736 |
2007 | Al Harrington | 127 | 293 | 85.79264 | 0.433 | 0.3574736 |
2007 | Al Harrington | 73 | 175 | 85.79264 | 0.417 | 0.3574736 |
2007 | Luther Head | 177 | 401 | 85.79264 | 0.441 | 0.3574736 |
2007 | Kirk Hinrich | 140 | 337 | 85.79264 | 0.415 | 0.3574736 |
2007 | Eddie House | 75 | 175 | 85.79264 | 0.429 | 0.3574736 |
2007 | Jason Kapono | 108 | 210 | 85.79264 | 0.514 | 0.3574736 |
2007 | Kyle Korver | 132 | 307 | 85.79264 | 0.430 | 0.3574736 |
2007 | Mike Miller | 202 | 498 | 85.79264 | 0.406 | 0.3574736 |
2007 | Cuttino Mobley | 101 | 246 | 85.79264 | 0.411 | 0.3574736 |
2007 | Bostjan Nachbar | 112 | 265 | 85.79264 | 0.423 | 0.3574736 |
2007 | Steve Nash | 156 | 343 | 85.79264 | 0.455 | 0.3574736 |
2007 | Dirk Nowitzki | 72 | 173 | 85.79264 | 0.416 | 0.3574736 |
2007 | Anthony Parker | 115 | 261 | 85.79264 | 0.441 | 0.3574736 |
2007 | DeShawn Stevenson | 74 | 183 | 85.79264 | 0.404 | 0.3574736 |
2007 | Jason Terry | 162 | 370 | 85.79264 | 0.438 | 0.3574736 |
2007 | Ime Udoka | 89 | 219 | 85.79264 | 0.406 | 0.3574736 |
2008 | Raja Bell | 176 | 439 | 81.48571 | 0.401 | 0.3610263 |
2008 | Chauncey Billups | 137 | 342 | 81.48571 | 0.401 | 0.3610263 |
2008 | Steve Blake | 121 | 298 | 81.48571 | 0.406 | 0.3610263 |
2008 | Bruce Bowen | 90 | 215 | 81.48571 | 0.419 | 0.3610263 |
2008 | Jose Calderon | 79 | 184 | 81.48571 | 0.429 | 0.3610263 |
2008 | Matt Carroll | 105 | 241 | 81.48571 | 0.436 | 0.3610263 |
2008 | Ricky Davis | 135 | 333 | 81.48571 | 0.405 | 0.3610263 |
2008 | Mike Dunleavy | 165 | 389 | 81.48571 | 0.424 | 0.3610263 |
2008 | Derek Fisher | 112 | 276 | 81.48571 | 0.406 | 0.3610263 |
2008 | Daniel Gibson | 118 | 268 | 81.48571 | 0.440 | 0.3610263 |
2008 | Manu Ginobili | 156 | 389 | 81.48571 | 0.401 | 0.3610263 |
2008 | Ben Gordon | 142 | 346 | 81.48571 | 0.410 | 0.3610263 |
2008 | Danny Granger | 171 | 423 | 81.48571 | 0.404 | 0.3610263 |
2008 | Damon Jones | 115 | 276 | 81.48571 | 0.417 | 0.3610263 |
2008 | James Jones | 91 | 205 | 81.48571 | 0.444 | 0.3610263 |
2008 | Rashard Lewis | 226 | 553 | 81.48571 | 0.409 | 0.3610263 |
2008 | Kevin Martin | 107 | 266 | 81.48571 | 0.402 | 0.3610263 |
2008 | Rashad McCants | 142 | 349 | 81.48571 | 0.407 | 0.3610263 |
2008 | Mike Miller | 155 | 359 | 81.48571 | 0.432 | 0.3610263 |
2008 | Steve Nash | 179 | 381 | 81.48571 | 0.470 | 0.3610263 |
2008 | Jameer Nelson | 64 | 154 | 81.48571 | 0.416 | 0.3610263 |
2008 | Anthony Parker | 133 | 304 | 81.48571 | 0.438 | 0.3610263 |
2008 | Chris Quinn | 64 | 159 | 81.48571 | 0.403 | 0.3610263 |
2008 | Vladimir Radmanovic | 95 | 234 | 81.48571 | 0.406 | 0.3610263 |
2008 | Jason Richardson | 243 | 599 | 81.48571 | 0.406 | 0.3610263 |
2008 | J.R. Smith | 157 | 390 | 81.48571 | 0.403 | 0.3610263 |
2008 | Peja Stojakovic | 231 | 524 | 81.48571 | 0.441 | 0.3610263 |
2008 | Wally Szczerbiak | 90 | 218 | 81.48571 | 0.413 | 0.3610263 |
2008 | Wally Szczerbiak | 71 | 166 | 81.48571 | 0.428 | 0.3610263 |
2008 | Sasha Vujacic | 118 | 270 | 81.48571 | 0.437 | 0.3610263 |
2009 | Ray Allen | 199 | 486 | 86.82990 | 0.409 | 0.3666568 |
2009 | D.J. Augustin | 108 | 246 | 86.82990 | 0.439 | 0.3666568 |
2009 | Kelenna Azubuike | 94 | 210 | 86.82990 | 0.448 | 0.3666568 |
2009 | Andrea Bargnani | 119 | 291 | 86.82990 | 0.409 | 0.3666568 |
2009 | Raja Bell | 114 | 271 | 86.82990 | 0.421 | 0.3666568 |
2009 | Chauncey Billups | 162 | 397 | 86.82990 | 0.408 | 0.3666568 |
2009 | Chauncey Billups | 160 | 390 | 86.82990 | 0.410 | 0.3666568 |
2009 | Steve Blake | 140 | 328 | 86.82990 | 0.427 | 0.3666568 |
2009 | Matt Bonner | 118 | 268 | 86.82990 | 0.440 | 0.3666568 |
2009 | Jose Calderon | 82 | 202 | 86.82990 | 0.406 | 0.3666568 |
2009 | Mike Conley | 88 | 217 | 86.82990 | 0.406 | 0.3666568 |
2009 | Boris Diaw | 75 | 181 | 86.82990 | 0.414 | 0.3666568 |
2009 | Boris Diaw | 70 | 167 | 86.82990 | 0.419 | 0.3666568 |
2009 | Keyon Dooling | 99 | 235 | 86.82990 | 0.421 | 0.3666568 |
2009 | Kevin Durant | 97 | 230 | 86.82990 | 0.422 | 0.3666568 |
2009 | Michael Finley | 131 | 319 | 86.82990 | 0.411 | 0.3666568 |
2009 | Ben Gordon | 173 | 422 | 86.82990 | 0.410 | 0.3666568 |
2009 | Danny Granger | 182 | 450 | 86.82990 | 0.404 | 0.3666568 |
2009 | Kirk Hinrich | 69 | 169 | 86.82990 | 0.408 | 0.3666568 |
2009 | Eddie House | 151 | 340 | 86.82990 | 0.444 | 0.3666568 |
2009 | Jason Kapono | 98 | 229 | 86.82990 | 0.428 | 0.3666568 |
2009 | Jason Kidd | 131 | 323 | 86.82990 | 0.406 | 0.3666568 |
2009 | Courtney Lee | 82 | 203 | 86.82990 | 0.404 | 0.3666568 |
2009 | Kevin Martin | 115 | 277 | 86.82990 | 0.415 | 0.3666568 |
2009 | Roger Mason | 166 | 394 | 86.82990 | 0.421 | 0.3666568 |
2009 | Anthony Morrow | 86 | 184 | 86.82990 | 0.467 | 0.3666568 |
2009 | Troy Murphy | 161 | 358 | 86.82990 | 0.450 | 0.3666568 |
2009 | Steve Nash | 108 | 246 | 86.82990 | 0.439 | 0.3666568 |
2009 | Jameer Nelson | 82 | 181 | 86.82990 | 0.453 | 0.3666568 |
2009 | Steve Novak | 119 | 286 | 86.82990 | 0.416 | 0.3666568 |
2009 | Mehmet Okur | 90 | 202 | 86.82990 | 0.446 | 0.3666568 |
2009 | Vladimir Radmanovic | 105 | 262 | 86.82990 | 0.401 | 0.3666568 |
2009 | John Salmons | 126 | 302 | 86.82990 | 0.417 | 0.3666568 |
2009 | John Salmons | 77 | 184 | 86.82990 | 0.418 | 0.3666568 |
2009 | Bobby Simmons | 117 | 262 | 86.82990 | 0.447 | 0.3666568 |
2009 | Wally Szczerbiak | 69 | 168 | 86.82990 | 0.411 | 0.3666568 |
2009 | Tim Thomas | 78 | 189 | 86.82990 | 0.413 | 0.3666568 |
2009 | Mo Williams | 183 | 420 | 86.82990 | 0.436 | 0.3666568 |
2010 | Arron Afflalo | 108 | 249 | 85.09343 | 0.434 | 0.3524723 |
2010 | Stephen Curry | 166 | 380 | 85.09343 | 0.437 | 0.3524723 |
2010 | Jared Dudley | 120 | 262 | 85.09343 | 0.458 | 0.3524723 |
2010 | Channing Frye | 172 | 392 | 85.09343 | 0.439 | 0.3524723 |
2010 | Jarrett Jack | 82 | 199 | 85.09343 | 0.412 | 0.3524723 |
2010 | Jason Kidd | 176 | 414 | 85.09343 | 0.425 | 0.3524723 |
2010 | Mike Miller | 82 | 171 | 85.09343 | 0.480 | 0.3524723 |
2010 | Anthony Morrow | 140 | 307 | 85.09343 | 0.456 | 0.3524723 |
2010 | Steve Nash | 124 | 291 | 85.09343 | 0.426 | 0.3524723 |
2010 | Anthony Parker | 108 | 261 | 85.09343 | 0.414 | 0.3524723 |
2010 | Paul Pierce | 109 | 263 | 85.09343 | 0.414 | 0.3524723 |
2010 | J.J. Redick | 111 | 274 | 85.09343 | 0.405 | 0.3524723 |
2010 | Brandon Rush | 124 | 302 | 85.09343 | 0.411 | 0.3524723 |
2010 | Mo Williams | 159 | 371 | 85.09343 | 0.429 | 0.3524723 |
2010 | Nick Young | 69 | 170 | 85.09343 | 0.406 | 0.3524723 |
2011 | Arron Afflalo | 105 | 248 | 84.66400 | 0.423 | 0.3572144 |
2011 | Ray Allen | 168 | 378 | 84.66400 | 0.444 | 0.3572144 |
2011 | Marco Belinelli | 134 | 324 | 84.66400 | 0.414 | 0.3572144 |
2011 | Mike Bibby | 153 | 348 | 84.66400 | 0.440 | 0.3572144 |
2011 | Mike Bibby | 113 | 256 | 84.66400 | 0.441 | 0.3572144 |
2011 | Chauncey Billups | 146 | 363 | 84.66400 | 0.402 | 0.3572144 |
2011 | Chauncey Billups | 105 | 238 | 84.66400 | 0.441 | 0.3572144 |
2011 | Matt Bonner | 105 | 230 | 84.66400 | 0.457 | 0.3572144 |
2011 | Daequan Cook | 65 | 154 | 84.66400 | 0.422 | 0.3572144 |
2011 | Stephen Curry | 151 | 342 | 84.66400 | 0.442 | 0.3572144 |
2011 | Austin Daye | 69 | 172 | 84.66400 | 0.401 | 0.3572144 |
2011 | Jared Dudley | 105 | 253 | 84.66400 | 0.415 | 0.3572144 |
2011 | Mike Dunleavy | 102 | 254 | 84.66400 | 0.402 | 0.3572144 |
2011 | Daniel Gibson | 118 | 293 | 84.66400 | 0.403 | 0.3572144 |
2011 | Ben Gordon | 107 | 266 | 84.66400 | 0.402 | 0.3572144 |
2011 | Richard Jefferson | 135 | 307 | 84.66400 | 0.440 | 0.3572144 |
2011 | James Jones | 123 | 287 | 84.66400 | 0.429 | 0.3572144 |
2011 | Kyle Korver | 120 | 289 | 84.66400 | 0.415 | 0.3572144 |
2011 | Ty Lawson | 69 | 171 | 84.66400 | 0.404 | 0.3572144 |
2011 | Courtney Lee | 71 | 174 | 84.66400 | 0.408 | 0.3572144 |
2011 | Kevin Love | 88 | 211 | 84.66400 | 0.417 | 0.3572144 |
2011 | Wesley Matthews | 154 | 378 | 84.66400 | 0.407 | 0.3572144 |
2011 | Anthony Morrow | 110 | 260 | 84.66400 | 0.423 | 0.3572144 |
2011 | Gary Neal | 129 | 308 | 84.66400 | 0.419 | 0.3572144 |
2011 | Jameer Nelson | 119 | 297 | 84.66400 | 0.401 | 0.3572144 |
2011 | Vladimir Radmanovic | 70 | 173 | 84.66400 | 0.405 | 0.3572144 |
2011 | Luke Ridnour | 81 | 184 | 84.66400 | 0.440 | 0.3572144 |
2011 | Brandon Rush | 93 | 223 | 84.66400 | 0.417 | 0.3572144 |
2011 | Hedo Turkoglu | 127 | 310 | 84.66400 | 0.410 | 0.3572144 |
2011 | Hedo Turkoglu | 86 | 213 | 84.66400 | 0.404 | 0.3572144 |
2011 | Reggie Williams | 102 | 241 | 84.66400 | 0.423 | 0.3572144 |
2011 | Shawne Williams | 85 | 212 | 84.66400 | 0.401 | 0.3572144 |
2012 | Ray Allen | 106 | 234 | 69.46824 | 0.453 | 0.3481203 |
2012 | Matt Bonner | 105 | 250 | 69.46824 | 0.420 | 0.3481203 |
2012 | Chase Budinger | 88 | 219 | 69.46824 | 0.402 | 0.3481203 |
2012 | Danny Green | 102 | 234 | 69.46824 | 0.436 | 0.3481203 |
2012 | Richard Jefferson | 113 | 269 | 69.46824 | 0.420 | 0.3481203 |
2012 | Richard Jefferson | 80 | 190 | 69.46824 | 0.421 | 0.3481203 |
2012 | Kyle Korver | 118 | 271 | 69.46824 | 0.435 | 0.3481203 |
2012 | Courtney Lee | 87 | 217 | 69.46824 | 0.401 | 0.3481203 |
2012 | Gary Neal | 83 | 198 | 69.46824 | 0.419 | 0.3481203 |
2012 | Steve Novak | 133 | 282 | 69.46824 | 0.472 | 0.3481203 |
2012 | J.J. Redick | 112 | 268 | 69.46824 | 0.418 | 0.3481203 |
2012 | Brandon Rush | 99 | 219 | 69.46824 | 0.452 | 0.3481203 |
2012 | Klay Thompson | 111 | 268 | 69.46824 | 0.414 | 0.3481203 |
2013 | Ray Allen | 139 | 332 | 92.42234 | 0.419 | 0.3588126 |
2013 | Shane Battier | 136 | 316 | 92.42234 | 0.430 | 0.3588126 |
2013 | Steve Blake | 72 | 171 | 92.42234 | 0.421 | 0.3588126 |
2013 | Jose Calderon | 130 | 282 | 92.42234 | 0.461 | 0.3588126 |
2013 | Jose Calderon | 79 | 184 | 92.42234 | 0.429 | 0.3588126 |
2013 | Vince Carter | 162 | 399 | 92.42234 | 0.406 | 0.3588126 |
2013 | Mario Chalmers | 123 | 301 | 92.42234 | 0.409 | 0.3588126 |
2013 | Stephen Curry | 272 | 600 | 92.42234 | 0.453 | 0.3588126 |
2013 | Mike Dunleavy | 128 | 299 | 92.42234 | 0.428 | 0.3588126 |
2013 | Kevin Durant | 139 | 334 | 92.42234 | 0.416 | 0.3588126 |
2013 | Randy Foye | 178 | 434 | 92.42234 | 0.410 | 0.3588126 |
2013 | Jimmer Fredette | 65 | 156 | 92.42234 | 0.417 | 0.3588126 |
2013 | Danny Green | 177 | 413 | 92.42234 | 0.429 | 0.3588126 |
2013 | Willie Green | 71 | 166 | 92.42234 | 0.428 | 0.3588126 |
2013 | Gordon Hayward | 102 | 246 | 92.42234 | 0.415 | 0.3588126 |
2013 | Ersan Ilyasova | 95 | 214 | 92.42234 | 0.444 | 0.3588126 |
2013 | Jarrett Jack | 82 | 203 | 92.42234 | 0.404 | 0.3588126 |
2013 | LeBron James | 103 | 254 | 92.42234 | 0.406 | 0.3588126 |
2013 | Kyle Korver | 189 | 414 | 92.42234 | 0.457 | 0.3588126 |
2013 | Kevin Martin | 158 | 371 | 92.42234 | 0.426 | 0.3588126 |
2013 | Roger Mason | 66 | 159 | 92.42234 | 0.415 | 0.3588126 |
2013 | O.J. Mayo | 142 | 349 | 92.42234 | 0.407 | 0.3588126 |
2013 | Mike Miller | 73 | 175 | 92.42234 | 0.417 | 0.3588126 |
2013 | Steve Novak | 149 | 351 | 92.42234 | 0.425 | 0.3588126 |
2013 | Dirk Nowitzki | 65 | 157 | 92.42234 | 0.414 | 0.3588126 |
2013 | Nate Robinson | 141 | 348 | 92.42234 | 0.405 | 0.3588126 |
2013 | Thabo Sefolosha | 108 | 258 | 92.42234 | 0.419 | 0.3588126 |
2013 | Klay Thompson | 211 | 526 | 92.42234 | 0.401 | 0.3588126 |
2013 | C.J. Watson | 88 | 214 | 92.42234 | 0.411 | 0.3588126 |
2013 | Martell Webster | 139 | 329 | 92.42234 | 0.422 | 0.3588126 |
2014 | Arron Afflalo | 128 | 300 | 95.64321 | 0.427 | 0.3594237 |
2014 | Ryan Anderson | 67 | 164 | 95.64321 | 0.409 | 0.3594237 |
2014 | Carmelo Anthony | 167 | 415 | 95.64321 | 0.402 | 0.3594237 |
2014 | Trevor Ariza | 180 | 442 | 95.64321 | 0.407 | 0.3594237 |
2014 | D.J. Augustin | 133 | 332 | 95.64321 | 0.401 | 0.3594237 |
2014 | D.J. Augustin | 132 | 321 | 95.64321 | 0.411 | 0.3594237 |
2014 | Bradley Beal | 138 | 343 | 95.64321 | 0.402 | 0.3594237 |
2014 | Marco Belinelli | 126 | 293 | 95.64321 | 0.430 | 0.3594237 |
2014 | Jose Calderon | 191 | 425 | 95.64321 | 0.449 | 0.3594237 |
2014 | Stephen Curry | 261 | 615 | 95.64321 | 0.424 | 0.3594237 |
2014 | Goran Dragic | 122 | 299 | 95.64321 | 0.408 | 0.3594237 |
2014 | Jordan Farmar | 70 | 160 | 95.64321 | 0.438 | 0.3594237 |
2014 | Danny Green | 132 | 318 | 95.64321 | 0.415 | 0.3594237 |
2014 | Spencer Hawes | 128 | 308 | 95.64321 | 0.416 | 0.3594237 |
2014 | Richard Jefferson | 123 | 301 | 95.64321 | 0.409 | 0.3594237 |
2014 | Joe Johnson | 162 | 404 | 95.64321 | 0.401 | 0.3594237 |
2014 | Kyle Korver | 185 | 392 | 95.64321 | 0.472 | 0.3594237 |
2014 | Jodie Meeks | 162 | 404 | 95.64321 | 0.401 | 0.3594237 |
2014 | Khris Middleton | 120 | 290 | 95.64321 | 0.414 | 0.3594237 |
2014 | Mike Miller | 107 | 233 | 95.64321 | 0.459 | 0.3594237 |
2014 | Patty Mills | 135 | 318 | 95.64321 | 0.425 | 0.3594237 |
2014 | Anthony Morrow | 88 | 195 | 95.64321 | 0.451 | 0.3594237 |
2014 | Hollis Thompson | 67 | 167 | 95.64321 | 0.401 | 0.3594237 |
2014 | Klay Thompson | 223 | 535 | 95.64321 | 0.417 | 0.3594237 |
2014 | Anthony Tolliver | 102 | 247 | 95.64321 | 0.413 | 0.3594237 |
2015 | Harrison Barnes | 87 | 215 | 97.41935 | 0.405 | 0.3481552 |
2015 | Bradley Beal | 106 | 259 | 97.41935 | 0.409 | 0.3481552 |
2015 | Stephen Curry | 286 | 646 | 97.41935 | 0.443 | 0.3481552 |
2015 | Matthew Dellavedova | 68 | 167 | 97.41935 | 0.407 | 0.3481552 |
2015 | Mike Dunleavy | 107 | 263 | 97.41935 | 0.407 | 0.3481552 |
2015 | Kevin Durant | 64 | 159 | 97.41935 | 0.403 | 0.3481552 |
2015 | Eric Gordon | 141 | 315 | 97.41935 | 0.448 | 0.3481552 |
2015 | Danny Green | 191 | 457 | 97.41935 | 0.418 | 0.3481552 |
2015 | Kyrie Irving | 157 | 378 | 97.41935 | 0.415 | 0.3481552 |
2015 | Richard Jefferson | 66 | 155 | 97.41935 | 0.426 | 0.3481552 |
2015 | Brandon Knight | 104 | 254 | 97.41935 | 0.409 | 0.3481552 |
2015 | Kyle Korver | 221 | 449 | 97.41935 | 0.492 | 0.3481552 |
2015 | Courtney Lee | 90 | 224 | 97.41935 | 0.402 | 0.3481552 |
2015 | Khris Middleton | 109 | 268 | 97.41935 | 0.407 | 0.3481552 |
2015 | Anthony Morrow | 141 | 325 | 97.41935 | 0.434 | 0.3481552 |
2015 | Quincy Pondexter | 74 | 171 | 97.41935 | 0.433 | 0.3481552 |
2015 | J.J. Redick | 200 | 458 | 97.41935 | 0.437 | 0.3481552 |
2015 | Damjan Rudez | 69 | 170 | 97.41935 | 0.406 | 0.3481552 |
2015 | Kyle Singler | 76 | 187 | 97.41935 | 0.406 | 0.3481552 |
2015 | Hollis Thompson | 115 | 287 | 97.41935 | 0.401 | 0.3481552 |
2015 | Klay Thompson | 239 | 545 | 97.41935 | 0.439 | 0.3481552 |
2016 | D.J. Augustin | 68 | 168 | 110.53460 | 0.405 | 0.3525646 |
2016 | Jerryd Bayless | 101 | 231 | 110.53460 | 0.437 | 0.3525646 |
2016 | Jose Calderon | 84 | 203 | 110.53460 | 0.414 | 0.3525646 |
2016 | Omri Casspi | 112 | 274 | 110.53460 | 0.409 | 0.3525646 |
2016 | Darren Collison | 87 | 217 | 110.53460 | 0.401 | 0.3525646 |
2016 | Stephen Curry | 402 | 886 | 110.53460 | 0.454 | 0.3525646 |
2016 | Matthew Dellavedova | 98 | 239 | 110.53460 | 0.410 | 0.3525646 |
2016 | Jared Dudley | 100 | 238 | 110.53460 | 0.420 | 0.3525646 |
2016 | George Hill | 128 | 314 | 110.53460 | 0.408 | 0.3525646 |
2016 | Kawhi Leonard | 129 | 291 | 110.53460 | 0.443 | 0.3525646 |
2016 | C.J. McCollum | 197 | 472 | 110.53460 | 0.417 | 0.3525646 |
2016 | Doug McDermott | 110 | 259 | 110.53460 | 0.425 | 0.3525646 |
2016 | Kelly Olynyk | 85 | 210 | 110.53460 | 0.405 | 0.3525646 |
2016 | Chandler Parsons | 104 | 251 | 110.53460 | 0.414 | 0.3525646 |
2016 | J.J. Redick | 200 | 421 | 110.53460 | 0.475 | 0.3525646 |
2016 | Brandon Rush | 65 | 157 | 110.53460 | 0.414 | 0.3525646 |
2016 | Luis Scola | 65 | 161 | 110.53460 | 0.404 | 0.3525646 |
2016 | Klay Thompson | 276 | 650 | 110.53460 | 0.425 | 0.3525646 |
2016 | Marvin Williams | 152 | 378 | 110.53460 | 0.402 | 0.3525646 |
2017 | Arron Afflalo | 62 | 151 | 122.91765 | 0.411 | 0.3574163 |
2017 | Ryan Anderson | 204 | 506 | 122.91765 | 0.403 | 0.3574163 |
2017 | Luke Babbitt | 87 | 210 | 122.91765 | 0.414 | 0.3574163 |
2017 | Bradley Beal | 223 | 552 | 122.91765 | 0.404 | 0.3574163 |
2017 | Malcolm Brogdon | 78 | 193 | 122.91765 | 0.404 | 0.3574163 |
2017 | Darren Collison | 73 | 175 | 122.91765 | 0.417 | 0.3574163 |
2017 | Mike Conley | 171 | 419 | 122.91765 | 0.408 | 0.3574163 |
2017 | Allen Crabbe | 134 | 302 | 122.91765 | 0.444 | 0.3574163 |
2017 | Seth Curry | 137 | 322 | 122.91765 | 0.425 | 0.3574163 |
2017 | Stephen Curry | 324 | 789 | 122.91765 | 0.411 | 0.3574163 |
2017 | Goran Dragic | 117 | 289 | 122.91765 | 0.405 | 0.3574163 |
2017 | Channing Frye | 137 | 335 | 122.91765 | 0.409 | 0.3574163 |
2017 | Gary Harris | 107 | 255 | 122.91765 | 0.420 | 0.3574163 |
2017 | George Hill | 94 | 233 | 122.91765 | 0.403 | 0.3574163 |
2017 | Joe Ingles | 123 | 279 | 122.91765 | 0.441 | 0.3574163 |
2017 | Kyrie Irving | 177 | 441 | 122.91765 | 0.401 | 0.3574163 |
2017 | Joe Johnson | 106 | 258 | 122.91765 | 0.411 | 0.3574163 |
2017 | Kyle Korver | 162 | 359 | 122.91765 | 0.451 | 0.3574163 |
2017 | Kyle Korver | 65 | 159 | 122.91765 | 0.409 | 0.3574163 |
2017 | Kyle Korver | 97 | 200 | 122.91765 | 0.485 | 0.3574163 |
2017 | Courtney Lee | 108 | 269 | 122.91765 | 0.401 | 0.3574163 |
2017 | Kyle Lowry | 193 | 468 | 122.91765 | 0.412 | 0.3574163 |
2017 | C.J. McCollum | 185 | 440 | 122.91765 | 0.420 | 0.3574163 |
2017 | C.J. Miles | 169 | 409 | 122.91765 | 0.413 | 0.3574163 |
2017 | Patty Mills | 147 | 356 | 122.91765 | 0.413 | 0.3574163 |
2017 | Chris Paul | 124 | 302 | 122.91765 | 0.411 | 0.3574163 |
2017 | Otto Porter | 148 | 341 | 122.91765 | 0.434 | 0.3574163 |
2017 | J.J. Redick | 201 | 468 | 122.91765 | 0.429 | 0.3574163 |
2017 | Tony Snell | 144 | 355 | 122.91765 | 0.406 | 0.3574163 |
2017 | Jason Terry | 73 | 171 | 122.91765 | 0.427 | 0.3574163 |
2017 | Klay Thompson | 268 | 647 | 122.91765 | 0.414 | 0.3574163 |
2017 | Nick Young | 170 | 421 | 122.91765 | 0.404 | 0.3574163 |