rvalues (version 0.6.3)

NBA1314: National Basketball Association, free throw data, 2013-2014 season

Description

Free throw statistics on 482 active players, 2013-2014 season

Usage

data(NBA1314)

Arguments

Format

A data frame with 482 players (rows) variables including.

RK

rank of player by proportion of free throws made

PLAYER

name of player

TEAM

player's team

GP

games played

PPG

points per game

FTM0

FTM/GP

FTA0

FTA/GP

FTA

free throws attempted

FTM

free throws made

FTprop

FTA/FTM

Details

Data obtained from ESPN.

References

See data analyzed in Henderson and Newton, 2015

Examples

Run this code
# NOT RUN {
data(NBA1314)
nba.dat <- cbind(NBA1314$FTM, NBA1314$FTA)
rownames(nba.dat) <- NBA1314$PLAYER

rvals.nba <- rvalues(nba.dat, family=binomial)
# }

Run the code above in your browser using DataCamp Workspace