subject
Computers and Technology, 05.06.2020 22:06 cody665

The management wants to you to calculate a 95% confidence interval for the average relative skill of all teams in 2013-2015. To construct a confidence interval, you will need the mean and standard error of the relative skill level in these years. The code block below calculates the mean and the standard deviation. Your edits will calculate the standard error and the confidence interval. Make the following edits to the code block below:Replace ??SD_VARIABLE?? with the variable name representing the standard deviation of relative skill of all teams from your years. (Hint: the standard deviation variable is in the code block below)Replace ??CL?? with the confidence level of the confidence interval. Replace ??MEAN_VARIABLE?? with the variable name representing the mean relative skill of all teams from your years. (Hint: the mean variable is in the code block below)Replace ??SE_VARIABLE?? with the variable name representing the standard error. (Hint: the standard error variable is in the code block below)The management also wants you to calculate the probability that a team in the league has a relative skill level less than that of the team that you picked. Assuming that the relative skill of teams is Normally distributed, Python methods for a Normal distribution can be used to answer this question. The code block below uses two of these Python methods. Your task is to identify the correct Python method and report the probability. print("Confidence Interval for Average Relative Skill in the years 2013 to 2015")print("")# Mean relative skill of all teams from the years 2013-2015mean = your_years_leagues_df['elo_n'].mean ()# Standard deviation of the relative skill of all teams from the years 2013-2015stdev = your_years_leagues_df['elo_n'].std( )n = len(your_years_leagues_df)#Confiden ce interval# TODO: make your edits here stderr = ??SD_Variable?? (n ** 0.5)conf_int_95 = st. norm. interval(??CL??,??MEAN_VARIABLE??,? ?SE_VARIABLE??)print("95% confidence interval (unrounded) for Average Relative Skill (ELO) in the years 2013 to 2015 =", conf_int_95)print("95% confidence interval (rounded) for Average Relative Skill (ELO) in the years 2013 to 2015 = (", round(conf_int_95[0], 2),",", round(conf_int_95[1], 2),")")print("\n")print("Probabilit y a team has Average Relative Skill LESS than the Average Relative Skill (ELO) of your team in the years 2013 to 2015")print("")mean_elo_your_team = your_team_df['elo_n'].mean()choice1 = st. norm. sf(mean_elo_your_team, mean, stdev)choice2 = st. norm. cdf(mean_elo_your_team, mean, stdev)# Pick the correct answer. print("Which of the two choices is correct?")print("Choice 1 =", round(choice1,4))print("Choice 2 =", round(choice2,4))

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 13:00
Should i buy a samsung s10 or google pixel 3xl
Answers: 1
question
Computers and Technology, 23.06.2019 06:30
How do you write an argumentative essay about the importance of free enterprise ?
Answers: 1
question
Computers and Technology, 23.06.2019 23:30
The keyboard usually has six rows of keys. which of the following is not one of the key group categories? letter keys number keys control keys graphic keys
Answers: 1
question
Computers and Technology, 24.06.2019 14:30
Ahousehold consists of a married couple and their twin five-year old daughters. the couples children had no income and lived with their parents all of last year. how many exemptions can the couple claim on last years tax return or they file with the “ married filing jointly “ status? a. 4 b. 5 c. 3 d. 2
Answers: 1
You know the right answer?
The management wants to you to calculate a 95% confidence interval for the average relative skill of...
Questions
question
Social Studies, 10.09.2021 23:30
question
Chemistry, 10.09.2021 23:30
question
Business, 10.09.2021 23:30
question
Social Studies, 10.09.2021 23:30
Questions on the website: 13722362