Learn R Programming

fclust (version 2.1.1.1)

NBA: NBA teams data

Description

NBA team statistics from the 2017-2018 regular season.

Usage

data(NBA)

Arguments

Format

A data.frame with 30 rows and 22 columns.

Author

Paolo Giordani, Maria Brigida Ferraro, Alessio Serafini

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).

See Also

FKM

Examples

Run this code
if (FALSE) {

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)
}

Run the code above in your browser using DataLab