zcs-cs / Baseball-Reporter

The 2014-2015 AP Computer Science A class's final project that analyzes baseball statistics and compiles an automated news report.
GNU General Public License v2.0
0 stars 0 forks source link

Big Innings Data #8

Closed abbeyjulian closed 9 years ago

abbeyjulian commented 9 years ago

We need 2 int arrays, one containing Team A's score each inning (not cumulative, preferably) and the other score per inning for Team B.

We also need access to home run data - player, what inning, and how many runs were scored off that ball. Specific data format is flexible depending how y'all have that data.

Hunter-Bobeck commented 9 years ago

Due to the structure, I won't be giving you the player for a run, but rather a count of runs for each player, and for each run which inning it was during and how many runs were scored off of the ball. You can determine from that which player goes with which run. Hopefully there is actually data somewhere for us to use for how many runs were scored off of the ball, that seems very specific!

Hunter-Bobeck commented 9 years ago

I'm proceeding to change balls' runs into RBI (moved under hits instead of runs).