Learn R Programming

AdvancedBasketballStats (version 1.0.1)

play_advance_stats: Play advanced statistics

Description

This function allows the calculation of advanced play statistics.

Usage

play_advance_stats(df1)

Arguments

df1

Should be a Data Frame that represents the play's statistics. The parameter has to be in the format provided by the play_data_adjustment() function.

Value

Data frame with the following advanced statistics calculated:

  • Points Per Possession (PPP)

  • Possessions (POSS)

  • Frequency (Freq)

  • Efficiency Field Goals percentage (eFG%)

  • Free Throw Percentage (FT%)

  • Assists percentage (AST%)

  • Turnover percentage (TOV%)

  • And One percentage (AndOne%)

  • Score percentage (Score%)

Examples

Run this code
# NOT RUN {
df1 <- data.frame("Name" = c("Sabonis ","Team"), "GP" = c(62,71),
"PTS" = c(387,0), "FG" = c(155,1), "FGA" = c(281,1),
"FGA Percentage" = c(0.552,1),"3P" = c(6,1),"3PA" = c(18,1),
"3P Percentage" = c(0.333,1),"2P" = c(149,0),"2PA" = c(263,0),
"2P Percentage" = c(0.567,0),"FT" = c(39,1),  "FTA" = c(53,1),
"FT Percentage" = c(0.736,1),  "ANDONE" = c(12,1), "AST" = c(0,1),
 "TOV" = c(27,1))

play_advance_stats(df1)


# }

Run the code above in your browser using DataLab