If a baseball team scores 763 runs and allows 614 runs, how many games do we expect the team to win? Using the linear regression model constructed during the lecture, enter the number of games we expect the team to win:

# Given values
RS <- 763  # Runs Scored
RA <- 614  # Runs Allowed

# Linear regression formula from lecture
wins <- 50.24 + 0.1058 * (RS - RA)

# Display expected wins
print(paste("Expected Wins:", round(wins, 2)))
## [1] "Expected Wins: 66"