Hole | Wins | Losses | Score | +1 |
---|---|---|---|---|
1 | 7 | 2 | -2 | Eagle (-2) |
2 | 4 | 5 | -1 | Bogey (+1) |
3 | 3 | 6 | +1 | Dbl Bogey (+2) |
4 | 5 | 4 | +1 | Par (E) |
5 | 8 | 1 | -2 | Albatross (-3) |
6 | 3 | 6 | E | Dbl Bogey (+2) |
7 | 8 | 1 | -3 | Albatross (-3) |
8 | 3 | 6 | -1 | Dbl Bogey (+2) |
9 | 2 | 7 | +2 | Trpl Bogey (+3) |
In: -1 | ||||
10 | 6 | 3 | +1 | Birdie (-1) |
11 | 6 | 3 | E | Birdie (-1) |
12 | 6 | 3 | -1 | Birdie (-1) |
13 | 3 | 6 | +1 | Dbl Bogey (+2) |
14 | 5 | 4 | +1 | Par (E) |
15 | 5 | 4 | +1 | Par (E) |
16 | 6 | 3 | E | Birdie (-1) |
17 | 6 | 3 | -1 | Birdie (-1) |
18 | 3 | 6 | +1 | Dbl Bogey (+2) |
Out: -1 | ||||
19 | ||||
Avg | 5 | 4 | E | Par |
This is a large string of text that appears to be a complete baseball season schedule for the Chicago Cubs in 2010. The format of the data suggests that it is an XML document, where each game is represented as a single element with various attributes and child elements.
Here's a brief overview of the structure:
<game>
element@date
attribute on the <game>
element@homeTeam
attribute on the <game>
element, which contains the string "Chicago Cubs"inning
and score
for the number of innings played and final scorestartPitcher
, reliefPitchers
, and endPitcher
to identify specific pitchers involved in the gamebatters
and outcomes
to track batted balls, outs, and hitsHere's an example of what a single <game>
element might look like:
<game date="2010-05-15">
<inning>9</inning>
<score>Cubs 3 - Cardinals 1</score>
<startPitcher>Carlos Zambrano</startPitcher>
<reliefPitchers>Jeff Samardzija, Kerry Wood</reliefPitchers>
<endPitcher>Kerry Wood</endPitcher>
<batters>
<!-- batted balls and outs data -->
</batters>
<outcomes>
<!-- hits, errors, and other outcome data -->
</outcomes>
</game>
If you need help parsing this data or performing analysis on it, I'd be happy to assist! Updated: July 18, 2025 at 5:15 AM