Question: Project Three: Simple Linear Regression and Multiple Regression This notebook contains step-by-step directions for Project Three. It is very important to run through the steps
Project Three: Simple Linear Regression and Multiple Regression
This notebook contains step-by-step directions for Project Three. It is very important to run through the steps in order. Some steps depend on the outputs of earlier steps. Once you have completed the steps in this notebook, be sure to write your summary report.
You are a data analyst for a basketball team and have access to a large set of historical data that you can use to analyze performance patterns. The coach of the team and your management have requested that you come up with regression models that predict the total number of wins for a team in the regular season based on key performance metrics. Although the data set is the same that you used in the previous projects, the data set used here has been aggregated to study the total number of wins in a regular season based on performance metrics shown in the table below. These regression models will help make key decisions to improve the performance of the team. You will use the Python programming language to perform the statistical analyses and then prepare a report of your findings to present for the team's management. Since the managers are not data analysts, you will need to interpret your findings and describe their practical implications.
There are four important variables in the data set that you will utilize in Project Three.
| Variable | What does it represent |
|---|---|
| total_wins | Total number of wins in a regular season |
| avg_pts | Average points scored in a regular season |
| avg_elo_n | Average relative skill of each team in a regular season |
| avg_pts_differential | Average point differential between the team and their opponents in a regular season |
The average relative skill (represented by the variable avg_elo_n in the data set) is simply the average of a team's relative skill in a regular season. Relative skill is measured using the ELO rating. This measure is inferred based on the final score of a game, the game location, and the outcome of the game relative to the probability of that outcome. The higher the number, the higher the relative skill of a team.
Reminder: It may be beneficial to review the summary report document for Project Three prior to starting this Python script. That will give you an idea of the questions you will need to answer with the outputs of this script.
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Step 1: Data Preparation
This step uploads the data set from a CSV file and transforms the data into a form that will be used to create regression models. The data will be aggregated to calculate the number of wins for teams in a basketball regular season between the years 1995 and 2015.
Click the block of code below and hit the Run button above.
In[]:
import numpy as npimport pandas as pdimport scipy.stats as stimport matplotlib.pyplot as pltfrom IPython.display import display, HTML# dataframe for this projectnba_wins_df = pd.read_csv('nba_wins_data.csv')display(HTML(nba_wins_df.head().to_html()))print("printed only the first five observations...")print("Number of rows in the dataset =", len(nba_wins_df))
Step 2: Scatterplot and Correlation for the Total Number of Wins and Average Points Scored
Your coach expects teams to win more games in a regular season if they have a high average number of points compared to their opponents. This is because the chances of winning are higher if a team scores high in its games. Therefore, it is expected that the total number of wins and the average points scored are correlated. Calculate the Pearson correlation coefficient and its P-value. Make the following edits to the code block below:
- Replace ??DATAFRAME_NAME?? with the name of the dataframe used in this project. See Step 1 for the name of dataframe used in this project.
- Replace ??POINTS?? with the name of the variable for average points scored in a regular season. See the table included in the Project Three instructions above to pick the variable name. Enclose this variable in single quotes. For example, if the variable name is var1 then replace ??POINTS?? with 'var1'.
- Replace ??WINS?? with the name of the variable for the total number of wins in a regular season. Remember to enclose the variable in single quotes. See the table included in the Project Three instructions above to pick the variable name. Enclose this variable in single quotes. For example, if the variable name is var2 then replace ??WINS?? with 'var2'.
The code block below will print a scatterplot of the total number of wins against the average points scored in a regular season.
After you are done with your edits, click the block of code below and hit the Run button above.
In[]:
import scipy.stats as st# ---- TODO: make your edits here ----plt.plot(??DATAFRAME_NAME??[??POINTS??], ??DATAFRAME_NAME??[??WINS??], 'o')plt.title('Total Number of Wins by Average Points Scored', fontsize=20)plt.xlabel('Average Points Scored')plt.ylabel('Total Number of Wins')plt.show()# ---- TODO: make your edits here ----correlation_coefficient, p_value = st.pearsonr(??DATAFRAME_NAME??[??POINTS??], ??DATAFRAME_NAME??[??WINS??])print("Correlation between Average Points Scored and the Total Number of Wins ")print("Pearson Correlation Coefficient =", round(correlation_coefficient,4))print("P-value =", round(p_value,4))
Step 3: Simple Linear Regression: Predicting the Total Number of Wins using Average Points Scored
The coach of your team suggests a simple linear regression model with the total number of wins as the response variable and the average points scored as the predictor variable. He expects a team to have more wins in a season if it scores a high average points during that season. This regression model will help your coach predict how many games your team might win in a regular season if they maintain a certain average score. Create this simple linear regression model. Make the following edits to the code block below:
- Replace ??RESPONSE_VARIABLE?? with the variable name that is being predicted. See the table included in the Project Three instructions above to pick the variable name. Do not enclose this variable in quotes. For example, if the variable name is var1 then replace ??RESPONSE_VARIABLE?? with var1.
- Replace ??PREDICTOR_VARIABLE?? with the variable name that is the predictor. See the table included in Project Three instructions above to pick the variable name. Do not enclose this variable in quotes. For example, if the variable name is var2 then replace ??PREDICTOR_VARIABLE?? with var2.
For example, if the variable names are var1 for the response variable and var2 for the predictor variable, then the expression in the code block below should be: model = smf.ols('var1 ~ var2', nba_wins_df).fit()
After you are done with your edits, click the block of code below and hit the Run button above.
In[]:
import statsmodels.formula.api as smf# Simple Linear Regression# ---- TODO: make your edits here ---model1 = smf.ols('??RESPONSE_VARIABLE?? ~ ??PREDICTOR_VARIABLE??', nba_wins_df).fit()print(model1.summary())
Step 4: Scatterplot and Correlation for the Total Number of Wins and Average Relative Skill
Your management expects the team to win more games in the regular season if it maintains a high average relative skill compared to other teams. Therefore, it is expected that the total number of wins and the average relative skill are correlated. Calculate the Pearson correlation coefficient and its P-value. Make the following edits to the code block below:
- Replace ??DATAFRAME_NAME?? with the name of the dataframe used in this project. See Step 1 for the name of dataframe used in this project.
- Replace ??RELATIVE_SKILL?? with the name of the variable for average relative skill in a regular season. See the table included in the Project Three instructions above to pick the variable name. Enclose this variable in single quotes. For example, if the variable name is var2 then replace ??RELATIVE_SKILL?? with 'var2'.
- Replace ??WINS?? with the name of the variable for total number of wins in a regular season. See the table included in Project Three instructions above to pick the variable name. Enclose this variable in single quotes. For example, if the variable name is var3 then replace ??WINS?? with 'var3'.
The code block below will print a scatterplot of the total number of wins against the average relative skill in a regular season.
After you are done with your edits, click the block of code below and hit the Run button above.
In[]:
# ---- TODO: make your edits here ---plt.plot(??DATAFRAME_NAME??[??RELATIVE_SKILL??], ??DATAFRAME_NAME??[??WINS??], 'o')plt.title('Wins by Average Relative Skill', fontsize=20)plt.xlabel('Average Relative Skill')plt.ylabel('Total Number of Wins')plt.show()# ---- TODO: make your edits here ---correlation_coefficient, p_value = st.pearsonr(??DATAFRAME_NAME??[??RELATIVE_SKILL??], ??DATAFRAME_NAME??[??WINS??])print("Correlation between Average Relative Skill and Total Number of Wins ")print("Pearson Correlation Coefficient =", round(correlation_coefficient,4))print("P-value =", round(p_value,4))
Step 5: Multiple Regression: Predicting the Total Number of Wins using Average Points Scored and Average Relative Skill
Instead of presenting a simple linear regression model to the coach, you can suggest a multiple regression model with the total number of wins as the response variable and the average points scored and the average relative skill as predictor variables. This regression model will help your coach predict how many games your team might win in a regular season based on metrics like the average points scored and average relative skill. This model is more practical because you expect more than one performance metric to determine the total number of wins in a regular season. Create this multiple regression model. Make the following edits to the code block below:
- Replace ??RESPONSE_VARIABLE?? with the variable name that is being predicted. See the table included in the Project Three instructions above. Do not enclose this variable in quotes. For example, if the variable name is var0 then replace ??RESPONSE_VARIABLE?? with var0.
- Replace ??PREDICTOR_VARIABLE_1?? with the variable name for average points scored. Hint: See the table included in the Project Three instructions above. Do not enclose this variable in quotes. For example, if the variable name is var1 then replace ??PREDICTOR_VARIABLE_1?? with var1.
- Replace ??PREDICTOR_VARIABLE_2?? with the variable name for average relative skill. Hint: See the table included in the Project Three instructions above. Do not enclose this variable in quotes. For example, if the variable name is var2 then replace ??PREDICTOR_VARIABLE_2?? with var2.
For example, if the variable names are var0 for the response variable and var1, var2 for the predictor variables, then the expression in the code block below should be: model = smf.ols('var0 ~ var1 + var2', nba_wins_df).fit()
After you are done with your edits, click the block of code below and hit the Run button above.
In[]:
import statsmodels.formula.api as smf# Multiple Regression# ---- TODO: make your edits here ---model2 = smf.ols('??RESPONSE_VARIABLE?? ~ ??PREDICTOR_VARIABLE_1?? + ??PREDICTOR_VARIABLE_2??', nba_wins_df).fit()print(model2.summary())
Step 6: Multiple Regression: Predicting the Total Number of Wins using Average Points Scored, Average Relative Skill, and Average Points Differential
The coach also wants you to consider the average points differential as a predictor variable in the multiple regression model. Create a multiple regression model with the total number of wins as the response variable, and average points scored, average relative skill, and average points differential as predictor variables. This regression model will help your coach predict how many games your team might win in a regular season based on metrics like the average score, average relative skill, and the average points differential between the team and their opponents.
You are to write this code block yourself.
Use Step 5 to help you write this code block. Here is some information that will help you write this code block. Reach out to your instructor if you need help.
- The dataframe used in this project is called nba_wins_df.
- The variable avg_pts respresents average points scored by each team in a regular season.
- The variable avg_elo_n respresents average relative skill of each team in a regular season.
- The variable avg_pts_differential respresents average points differential between each team and their opponents in a regular season.
- Print the model summary.
Write your code in the code block section below. After you are done, click this block of code and hit the Run button above. Reach out to your instructor if you need more help with this step.
In[]:
# Write your code in this code block section
End of Project Three
Download the HTML output and submit it with your summary report for Project Three. The HTML output can be downloaded by clicking File, then Download as, then HTML. Do not include the Python code within your summary report.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
