Wolfram Computation Meets Knowledge

Baseball Slugging Percentage

Slugging percentage (SLG) is a measure of the batting productivity of a hitter,defined as the total bases divided by the number of at bats.

Slugging percentage is the sum of bases made by the batter (singles, doubles, triples and home runs) divided by number of at bats.

Formula

QuantityVariable["SLG", "Unitless"] == (QuantityVariable["1B", "Unitless"] + 2*QuantityVariable["2B", "Unitless"] + 3*QuantityVariable["3B", "Unitless"] + 4*QuantityVariable["HR", "Unitless"])/QuantityVariable["AB", "Unitless"]

symbol description physical quantity
SLG slugging percentage "Unitless"
AB at bats "Unitless"
1B singles "Unitless"
2B doubles "Unitless"
3B triples "Unitless"
HR home runs "Unitless"

Forms

Examples

Get the resource:

In[1]:=
ResourceObject["Baseball Slugging Percentage"]
Out[1]=

Get the formula:

In[2]:=
FormulaData[ResourceObject["Baseball Slugging Percentage"]]
Out[2]=

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Baseball Slugging Percentage"], {QuantityVariable[
   "1B","Unitless"] -> 100, QuantityVariable["3B","Unitless"] -> 5}]
Out[3]=

Publisher Information