Monday, May 11, 2009
FIP constants
Someone asked me for the FIP constant to use for all the years, leagues. Here’s the SQL that you can plug into the Access DB:
SELECT
lgID
, yearID
, Sum(9*[ER]+2*[SO]-3*([BB]-nz([IBB])+nz([HBP]))-13*[HR])/(Sum([IPouts])/3) AS FIP_constant
FROM Pitching
GROUP BY lgID, yearID
Note that the “BB” term is non-intentional walks plus hit batters. The “Nz” is to count as zero those terms if they don’t exist. “IPouts/3” gives you IP.
Here’s the handy-dandy file: FIP_constant.txt


Recent comments
Older comments
Page 1 of 344 pages 1 2 3 > Last »Complete Archive – By Category
Complete Archive – By Date