Description Usage Format Details Examples
Major League Baseball (MLB) data for the 2016 season.
1 |
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
HomeStartingPitcherStarting 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
All wagering lines from Pinnacle for the 2016 MLB season
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 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)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.