Total number of goals scored

goals <- c(2, 3, 1, 4,2,0,1,4,3,2) 
total_goals<-sum(goals)
print(total_goals)
## [1] 22

What is the average number of goals scored per game?

average_goals<-mean(goals)
print(average_goals)
## [1] 2.2

What is the maximum number number of goals scored in a single game?

max_goals<-max(goals)
print(max_goals)
## [1] 4
min_goals<-min(goals)
print(min_goals)
## [1] 0