NBA {fclust} | R Documentation |
NBA teams data
Description
NBA team statistics from the 2017-2018 regular season.
Usage
data(NBA)
Format
A data.frame with 30 rows and 22 columns.
Details
Data refer to some statistics of the NBA teams for the regular season 2017-2018. The teams are distinguished according to two classification variables.
The statistics are: number of wins (W
), field goals made (FGM
), field goals attempted (FGA
), field goals percentage (FGP
), 3 point field goals made (3PM
), 3 point field goals attempted (3PA
), 3 point field goals percentage (3PP
), free throws made (FTM
), free throws attempted (FTA
), free throws percentage (FTP
), offensive rebounds (OREB
), defensive rebounds (DREB
), assists (AST
), turnovers (TOV
), steals (STL
), blocks (BLK
), blocked field goal attempts (BLKA
), personal fouls (PF
), personal fouls drawn (PFD
) and points (PTS
). Moreover, reported are the conference (Conference
) and the playoff appearance (Playoff
).
Author(s)
Paolo Giordani, Maria Brigida Ferraro, Alessio Serafini
Source
https://stats.nba.com/teams/traditional/
See Also
Examples
## Not run:
data(NBA)
## A subset of variables is considered
X <- NBA[,c(4,7,10,11,12,13,14,15,16,17,20)]
clust.FKM=FKM(X=X,k=2:6,m=1.5,RS=50,stand=1,index="SIL.F",alpha=1)
summary(clust.FKM)
## End(Not run)