Wolfram Computation Meets Knowledge

Basketball Assist Rate

The assist rate estimates the percentage of a team's possessions a player assists on while on the floor.

The Assist rate equals 100 times assists divided by the sum of assists, field goals attempted, turnovers and 0.44 times the field goals attempted.

Formula

QuantityVariable["AST%", "Unitless"] == (100*QuantityVariable["AST", "Unitless"])/(QuantityVariable["AST", "Unitless"] + QuantityVariable["FGA", "Unitless"] + 0.44*QuantityVariable["FTA", "Unitless"] + QuantityVariable["TO", "Unitless"])

symbol description physical quantity
AST% assist rate "Unitless"
AST assists "Unitless"
FGA field goals attempted "Unitless"
FTA free throws attempted "Unitless"
TO turnovers "Unitless"

Forms

Examples

Get the resource:

In[1]:=
ResourceObject["Basketball Assist Rate"]
Out[1]=

Get the formula:

In[2]:=
FormulaData[ResourceObject["Basketball Assist Rate"]]
Out[2]=

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Basketball Assist Rate"], {QuantityVariable["AST","Unitless"] -> 
   15, QuantityVariable["FTA","Unitless"] -> 3, 
  QuantityVariable["AST%","Unitless"] -> 0.25`, 
  QuantityVariable["TO","Unitless"] -> 3}]
Out[3]=

Publisher Information