Strike Out Percentage and 3B

BASEBALL AND NOT BASEBALL

 This is just a quick follow-up to the last post.  SO% (K%) does not impact the stranding of runners on third base much.  This is probably because it is already factored into batting average.

In fact a two-variable linear regression shows that using batting average and strike out rate gives an r2 of 0.6 while just using batting average give 0.59 using 2009 team American League data.

What I learned is how to use the Excel LINEST function. 

LINEST (array,array,TRUE, TRUE) should have the dependent variable as the first array and the potentially independent variables in the second array.  The first true allows the y-intercept (b) to be non-zero.  The last true tells Excel to compute r2 and other regression statistics.

Using any search engine you can find out where in the array returned by LINEST the information you want is.  For instance, INDEX(LINEST (array,array,TRUE, TRUE),3,1) returns r2 for the regression.  The coefficients of the variables (the mi and b in y = m1x + m2x + . . . + b) are in row 1 of the LINEST array.  You can also force Excel to show the entire array using the selection, F2 and ctrl-shift-enter.  (See http://office.microsoft.com/en-us/excel/HP052091551033.aspx.)

 Here is the data I used:

TEAM     2009 BA     SO%     2009 3B, <2
SEA     0.258     19.7%     47%
CHA     0.258     18.7%     49%
KC     0.259     19.7%     50%
DET     0.260     20.1%     48%
TEX     0.260     22.7%     50%
OAK     0.262     18.7%     51%
TAM     0.263     22.5%     51%
CLE     0.264     21.7%     51%
TOR     0.266     18.0%     52%
BAL     0.268     18.0%     57%
BOS     0.270     20.2%     53%
MIN     0.274     18.2%     56%
NYA     0.283     17.9%     54%
LAA     0.285     18.7%     55%

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s