| MLB2016 {pinnacle.data} | R Documentation |
MLB2016.
Description
Major League Baseball (MLB) data for the 2016 season.
Usage
MLB2016
Format
A tibble with 20 variables:
GameIDsame format as Retrosheets and BaseballReference data
EventDateTimeUTCTime of the game in UTC
EventDateTimeETTime of the game in Eastern Standardtime
AwayTeamTeam name of the Away Team
HomeTeamTeam name of the Home Team
DoubleHeaderGameIndicates if this was a double Header
AwayStartingPitcherStarting pitcher Away Team
HomeStartingPicherStarting pitcher Home Team
FinalScoreAwayRuns scored by Away Team
FinalScoreHomeRuns scored by Home Team
EnteredDateTimeUTCTime of the wager line in UTC
EnteredDateTimeETTime of the wager line in Eastern Standardtime
SpreadTeam1Spread Handicap for Away Team
SpreadUS1Spread US odds for Away Team
SpreadUS2Spread US odds for Home Team
MoneyUS1Moneyline US odds for Away Team
MoneyUS2Moneyline US odds for Home Team
TotalPointsTotal runs handicap
TotalUSOverTotal runs US odds for Over
TotalUSUnderTotal runs US odds for Under
Details
All wagering lines from Pinnacle for the 2016 MLB season
Examples
if (require("tidyverse")) {
library(tidyverse)
# What was the range of expected total runs according to the prediction market at Pinnacle?
MLB2016 %>%
unnest() %>%
group_by(GameID) %>%
arrange(desc(EnteredDateTimeUTC)) %>%
slice(1) %>%
ungroup() %>%
group_by(TotalPoints) %>%
summarize(Count = n())
# How many games went Over/Under/Landed on the total?
MLB2016 %>%
unnest() %>%
group_by(GameID) %>%
arrange(desc(EnteredDateTimeUTC)) %>%
slice(1) %>%
ungroup() %>%
select(GameID,TotalPoints,FinalScoreAway,FinalScoreHome) %>%
mutate(TotalOutcome = case_when(
FinalScoreAway + FinalScoreHome > TotalPoints ~ "Over",
FinalScoreAway + FinalScoreHome < TotalPoints ~ "Under",
FinalScoreAway + FinalScoreHome == TotalPoints ~ "Landed"
)
) %>%
group_by(TotalPoints,TotalOutcome) %>%
summarize(Count = n()) %>%
print(n=100)
}
[Package pinnacle.data version 0.1.4 Index]