do_EPS {BAwiR} | R Documentation |
Efficient Points Scored (EPS)
Description
A limitation of do_OE
is that it doesn't rely on the quantity
of the player's offense production, that's to say, whether the player
provides a lot of offense or not. In addition, it does not give credit
for free-throws. An extension of do_OE
has been defined:
the Efficient Points Scored (EPS), which is the result of the product of
OE and points scored. Points scored counts free-throws, two-point and
three-point field goals. A factor F is also added to put the adjusted
total points on a points scored scale. With the factor F, the sum of the
EPS scores for all players in a given season is equal to the sum of the
league total points scored in that season.
Usage
do_EPS(df)
Arguments
df |
Data frame with the games and the players info. |
Value
EPS values.
Author(s)
Guillermo Vinue
References
Shea, S., Baker, C., (2013). Basketball Analytics: Objective and Efficient Strategies for Understanding How Teams Win. Lake St. Louis, MO: Advanced Metrics, LLC.
See Also
Examples
df <- do_join_games_bio("ACB", acb_games_1718, acb_players_1718)
df1 <- do_add_adv_stats(df)
do_EPS(df1)[1]