wsb: wSB

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

Description

wSB is the estimated number of runs a player contributes by stealing bases as compared to the average player.

Usage

1
wsb(year, SB, CS, lgwSB, single, bb, hbp, ibb)

Arguments

year

Season

SB

Stolen Bases

CS

Caught Stealing

lgwSB

League wSB

single

Singles

bb

Walks

hbp

Hit By Pitches

ibb

Intentional Walks

Details

wSB is useful because it attaches a value to a player's SB count

Value

Returns a value equal to (SB * runSB) + (CS * runCS) - (lgwSB * (single + bb + hbp - ibb))

Author(s)

Peter Xenopoulos

References

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

See Also

lgwSB

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## The function is currently defined as
function (year, SB, CS, lgwSB, single, bb, hbp, ibb) 
{
    runSB <- linearWeights$runSB[which(linearWeights$Season == 
        year)]
    runCS <- linearWeights$runCS[which(linearWeights$Season == 
        year)]
    wsb <- (SB * runSB) + (CS * runCS) - (lgwSB * (single + bb + 
        hbp - ibb))
  }

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