160 lines
3.3 KiB
Python
160 lines
3.3 KiB
Python
"""
|
|
Data to use:
|
|
Previous Game 2
|
|
game_date
|
|
day_of_week
|
|
day_night
|
|
park
|
|
length_in_minutes
|
|
score
|
|
line_score
|
|
at_bats
|
|
hits
|
|
doubles
|
|
triples
|
|
homeruns
|
|
rbis
|
|
sacrifice_hits
|
|
sacrifice_flies
|
|
hit_by_pitch
|
|
walks
|
|
intentional_walks
|
|
strikeouts
|
|
stolen_bases
|
|
caught_stealing
|
|
grounded_double
|
|
interference
|
|
left_on_base
|
|
pitchers_used
|
|
individual_earned_runs
|
|
earned_runs
|
|
wild_pitches
|
|
assits
|
|
errors
|
|
double_play
|
|
triple_play
|
|
starting_1_id
|
|
starting_1_position
|
|
starting_2_id
|
|
starting_2_position
|
|
starting_3_id
|
|
starting_3_position
|
|
starting_4_id
|
|
starting_4_position
|
|
starting_5_id
|
|
starting_5_position
|
|
starting_6_id
|
|
starting_6_position
|
|
starting_7_id
|
|
starting_7_position
|
|
starting_8_id
|
|
starting_8_position
|
|
starting_9_id
|
|
starting_9_position
|
|
|
|
Previous Game 1
|
|
game_date
|
|
day_of_week
|
|
day_night
|
|
park
|
|
length_in_minutes
|
|
score
|
|
line_score
|
|
at_bats
|
|
hits
|
|
doubles
|
|
triples
|
|
homeruns
|
|
rbis
|
|
sacrifice_hits
|
|
sacrifice_flies
|
|
hit_by_pitch
|
|
walks
|
|
intentional_walks
|
|
strikeouts
|
|
stolen_bases
|
|
caught_stealing
|
|
grounded_double
|
|
interference
|
|
left_on_base
|
|
pitchers_used
|
|
individual_earned_runs
|
|
earned_runs
|
|
wild_pitches
|
|
assits
|
|
errors
|
|
double_play
|
|
triple_play
|
|
starting_1_id
|
|
starting_1_position
|
|
starting_2_id
|
|
starting_2_position
|
|
starting_3_id
|
|
starting_3_position
|
|
starting_4_id
|
|
starting_4_position
|
|
starting_5_id
|
|
starting_5_position
|
|
starting_6_id
|
|
starting_6_position
|
|
starting_7_id
|
|
starting_7_position
|
|
starting_8_id
|
|
starting_8_position
|
|
starting_9_id
|
|
starting_9_position
|
|
|
|
Predicted Game
|
|
game_date
|
|
day_of_week
|
|
day_night
|
|
park_id
|
|
home_plate_ump_id
|
|
b1_ump_id
|
|
b2_ump_id
|
|
b3_ump_id
|
|
lf_fence_distance
|
|
lf_fence_height
|
|
ct_fence_distance
|
|
ct_fence_height
|
|
rf_fence_distance
|
|
rf_fence_height
|
|
has_roof
|
|
latitude
|
|
longitude
|
|
elevation
|
|
starting_1_id
|
|
starting_1_position
|
|
starting_2_id
|
|
starting_2_position
|
|
starting_3_id
|
|
starting_3_position
|
|
starting_4_id
|
|
starting_4_position
|
|
starting_5_id
|
|
starting_5_position
|
|
starting_6_id
|
|
starting_6_position
|
|
starting_7_id
|
|
starting_7_position
|
|
starting_8_id
|
|
starting_8_position
|
|
starting_9_id
|
|
starting_9_position
|
|
temperature
|
|
humidity
|
|
dew_point
|
|
apparent_temperature
|
|
air_pressure
|
|
percipitation
|
|
rain
|
|
snowfall
|
|
cloud_cover
|
|
wind_speed
|
|
wind_direction
|
|
wind_gusts
|
|
sun_rise
|
|
sun_set
|
|
moon_phase
|
|
|
|
""" |