iso: Isolated Power

Description Usage Arguments Value Author(s) References See Also Examples

Description

Isolated power measures a hitter's ability to hit for extra bases.

Usage

1
iso(slg, avg)

Arguments

slg

Slugging Percentage

avg

Batting Average

Value

Returns a numerical value equal to SLG-AVG

Author(s)

Peter Xenopoulos

References

http://www.fangraphs.com/library/offense/iso/

See Also

opsplus, ops

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Let's calculate Mike Trout's isolated power in 2014
## He had a SLG = .561 and an AVG = .287
## We should get .274
iso(.561,.287)

## The function is currently defined as
function (slg, avg) 
{
    iso <- slg - avg
    return(iso)
  }

Sabermetrics documentation built on Jan. 15, 2017, 7:34 p.m.