So I am new to coding and I am stuck with this part of my project. ## Step 7 - Descriptive Statistics - Points Scored By Your Time in Away Games The management also wants you to run descriptive statistics on the points scored by your team in games played at opponent's venue (Away) in 2013-2015. They want you to analyze measures of central tendency (e.g. mean, median) and measures of spread (e.g. standard deviation) in explaining if the team is doing better in Home games compared to Away games. Calculate descriptive statistics including the mean, median, variance, and standard deviation for points scored by your team played in opponent's venue (Away). Make the following edits to the code block below:
So I am new to coding and I am stuck with this part of my project.
## Step 7 - Descriptive Statistics - Points Scored By Your Time in Away Games
The management also wants you to run descriptive statistics on the points scored by your team in games played at opponent's venue (Away) in 2013-2015. They want you to analyze measures of central tendency (e.g. mean, median) and measures of spread (e.g. standard deviation) in explaining if the team is doing better in Home games compared to Away games. Calculate descriptive statistics including the mean, median, variance, and standard deviation for points scored by your team played in opponent's venue (Away). Make the following edits to the code block below:
<font><strong>You are to write this code block yourself.</strong></font>
Use Step 6 to help you write this code block. Here is some information that will help you write this code block.
1. <font color='red'> Since you are calculating statistics for games played at opponent's venue, game_location variable should be set to 'A'. </font>
2. <font color='red'> Functions for all statistics are the same as those in step 6. </font>
3. <font color='red'> Your statistics should be rounded to two decimal places. </font>
Write your code in the code block section below.
##Step 6 results are as follows:
Mean = 1548.57 Median = 1553.64 Variance = 1286.75 Standard Deviation = 35.87
Trending now
This is a popular solution!
Step by step
Solved in 3 steps