2009 MLB park factors

Here they are in CSV with MLBAM’s venue ID added. Here’s a schema you can use should you want to run them into a database:

DROP TABLE IF EXISTS `park_factors`;
CREATE TABLE park_factors (
    venue_id INT DEFAULT NULL,
    year INT DEFAULT NULL,
    name VARCHAR(100) DEFAULT NULL,
    R FLOAT DEFAULT NULL,
    H FLOAT DEFAULT NULL,
    HR FLOAT DEFAULT NULL,
    H2B FLOAT DEFAULT NULL,
    H3B FLOAT DEFAULT NULL,
    BB FLOAT DEFAULT NULL,
    PRIMARY KEY (venue_id, year)
);

Leave a comment

RSS feed for comments on this post