{"id":136,"date":"2017-09-28T13:16:35","date_gmt":"2017-09-28T20:16:35","guid":{"rendered":"http:\/\/www.ootp.cavebutter.net\/blog\/?p=136"},"modified":"2017-09-28T13:16:35","modified_gmt":"2017-09-28T20:16:35","slug":"batting-stats-1-the-easy-stuff","status":"publish","type":"post","link":"http:\/\/www.ootp.cavebutter.net\/blog\/archives\/136","title":{"rendered":"Batting Stats 1: The Easy Stuff"},"content":{"rendered":"<p>The goal here is to create a table (or view) for all offensive stats for each player-year-stint-split. \u00a0Let&#8217;s go back and parse that briefly: \u00a0Stats are collected for each player who accumulates them. \u00a0Each player gets his own row. \u00a0For each year that a player accumulates stats, a new row of data is created for that player. \u00a0For each team that a player plays in a given year (stint), a new row of data is created for that player. \u00a0Stats are accumulated and placed into three splits for each player-year-stint: Overall, vs. Left, and vs. Right.<\/p>\n<p>I will most likely create views for each split, but for the moment I am going to focus only on Overall <code>(split_id=1)<\/code>.<\/p>\n<p>As this view is where I have gotten tripped up in the past, I&#8217;m going to take it slowly here, checking against game data periodically. \u00a0So, easy bit first: Let&#8217;s get the counting stats and the more traditional rate stats out of the way:<\/p>\n<pre class=\"line-numbers\"><code class=\"language-sql\">#Calculated batting stats for OOTP\r\n    CREATE OR REPLACE VIEW CalcBatting AS\r\n\r\n    SELECT b.year\r\n    , b.league_id\r\n    , b.player_id\r\n    , b.stint #We can eventually move this down the list\r\n    , b.split_id #We can eventually remove this\r\n    , b.team_id #We can eventually move this down the list\r\n    , l.abbr as Lg\r\n    , t.abbr as Team\r\n    , b.g\r\n    , b.ab\r\n    , b.ab+b.bb+b.sh+b.sf+b.hp as PA\r\n    , b.r \r\n    , b.h\r\n    , b.d\r\n    , b.t\r\n    , b.hr\r\n    , b.rbi\r\n    , b.sb\r\n    , b.cs\r\n    , b.bb\r\n    , b.k\r\n    , b.ibb\r\n    , b.hp\r\n    , b.sh\r\n    , b.sf\r\n    , b.gdp\r\n        FROM \r\n      players_career_batting_stats b \r\n      INNER JOIN leagues l ON b.league_id=l.league_id \r\n      INNER JOIN teams t ON b.team_id=t.team_id\r\n    WHERE b.ab&lt;&gt;0 AND b.split_id=1\r\n    ORDER BY b.player_id, b.year<\/code><\/pre>\n<p>We&#8217;ll pick a random player from in-game and make sure we line up. \u00a0Let&#8217;s pick player #14 from 2015 and compare to OOTP. \u00a0Not expecting any problems on the easy stuff. \u00a0Still, just to be sure.<\/p>\n<figure id=\"attachment_141\" aria-describedby=\"caption-attachment-141\" style=\"width: 739px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" data-attachment-id=\"141\" data-permalink=\"http:\/\/www.ootp.cavebutter.net\/blog\/archives\/136\/player14-2015\" data-orig-file=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?fit=1191%2C44\" data-orig-size=\"1191,44\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"player14 2015\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?fit=739%2C27\" class=\"wp-image-141 size-large\" src=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?resize=739%2C27\" alt=\"\" width=\"739\" height=\"27\" srcset=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?resize=1024%2C38 1024w, https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?resize=300%2C11 300w, https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?resize=768%2C28 768w, https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/player14-2015.jpg?w=1191 1191w\" sizes=\"auto, (max-width: 739px) 100vw, 739px\" \/><\/a><figcaption id=\"caption-attachment-141\" class=\"wp-caption-text\">Output from calcbatting<\/figcaption><\/figure>\n<figure id=\"attachment_142\" aria-describedby=\"caption-attachment-142\" style=\"width: 959px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" data-attachment-id=\"142\" data-permalink=\"http:\/\/www.ootp.cavebutter.net\/blog\/archives\/136\/garcia-frank\" data-orig-file=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?fit=959%2C45\" data-orig-size=\"959,45\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"garcia frank\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?fit=739%2C35\" class=\"wp-image-142 size-full\" src=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?resize=739%2C35\" alt=\"\" width=\"739\" height=\"35\" srcset=\"https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?w=959 959w, https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?resize=300%2C14 300w, https:\/\/i0.wp.com\/www.ootp.cavebutter.net\/blog\/wp-content\/uploads\/2017\/09\/garcia-frank.jpg?resize=768%2C36 768w\" sizes=\"auto, (max-width: 739px) 100vw, 739px\" \/><\/a><figcaption id=\"caption-attachment-142\" class=\"wp-caption-text\">Frank Garcia<\/figcaption><\/figure>\n<p>So far so good. \u00a0Next post will finish up with the standard stats and some of the easier advanced stats.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The goal here is to create a table (or view) for all offensive stats for each player-year-stint-split. \u00a0Let&#8217;s go back and parse that briefly: \u00a0Stats are collected for each player who accumulates them. \u00a0Each player gets his own row. \u00a0For each year that a player accumulates stats, a new row of data is created for&hellip; <a class=\"more-link\" href=\"http:\/\/www.ootp.cavebutter.net\/blog\/archives\/136\">Continue reading <span class=\"screen-reader-text\">Batting Stats 1: The Easy Stuff<\/span> <span class=\"meta-nav\" aria-hidden=\"true\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[25],"tags":[14,7,4,22,24],"class_list":["post-136","post","type-post","status-publish","format-standard","hentry","category-batting","tag-batting","tag-mysql","tag-ootp","tag-players","tag-view"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9cxb5-2c","jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/posts\/136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/comments?post=136"}],"version-history":[{"count":5,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/posts\/136\/revisions"}],"predecessor-version":[{"id":143,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/posts\/136\/revisions\/143"}],"wp:attachment":[{"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/media?parent=136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/categories?post=136"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.ootp.cavebutter.net\/blog\/wp-json\/wp\/v2\/tags?post=136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}