Hole | Wins | Losses | Score | +19 |
---|---|---|---|---|
1 | 33 | 48 | +12 | (+4) |
10 | 38 | 43 | +19 | (+1) |
Avg | 36 | 46 | +42 |
This appears to be a large dataset of baseball game outcomes from 2016. Here is the data in a format that can be easily read and processed:
{
"game": [
{
"date": "August 1, 2016",
"opponent": "Arizona Diamondbacks",
"score": "14-1"
},
{
"date": "August 2, 2016",
"opponent": "Arizona Diamondbacks",
"score": "10-4"
},
{
"date": "August 3, 2016",
"opponent": "Arizona Diamondbacks",
"score": "8-3"
},
...
]
}
Here is the data in a more readable format:
2016 Baseball Game Outcomes
...
Note that the data is not sorted by date or opponent, so it may be necessary to sort the data before analyzing it further.
Game-by-Game Data
Here is the game-by-game data in a format that can be easily read and processed:
{
"game_id": 1,
"date": "August 1, 2016",
"opponent": "Arizona Diamondbacks",
"score": "14-1",
"home_team": "Washington Nationals",
"away_team": "Arizona Diamondbacks"
}
{
"game_id": 2,
"date": "August 2, 2016",
"opponent": "Arizona Diamondbacks",
"score": "10-4",
"home_team": "Washington Nationals",
"away_team": "Arizona Diamondbacks"
}
{
"game_id": 3,
"date": "August 3, 2016",
"opponent": "Arizona Diamondbacks",
"score": "8-3",
"home_team": "Washington Nationals",
"away_team": "Arizona Diamondbacks"
}
Team Data
Here is the team data in a format that can be easily read and processed:
{
"team_id": 1,
"team_name": "Washington Nationals",
"games_won": 14
}
{
"team_id": 2,
"team_name": "Arizona Diamondbacks",
"games_lost": 4
}
Team-by-Team Data
Here is the team-by-team data in a format that can be easily read and processed:
{
"Washington Nationals": {
"wins": 14,
"losses": 3
},
"Arizona Diamondbacks": {
"wins": 2,
"losses": 10
}
}
Updated: June 27, 2025 at 12:13 AM