Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Hello! I am needing assistance with this by sunday please. I am not sure what or where i am going wrong. Here is the step
Hello! I am needing assistance with this by sunday please. I am not sure what or where i am going wrong.
Here is the step i am needing assistance on.
In [38]: Write your code in this code block section rint ("Confidence Interval for Average Relative Skill in the years 1996 to 1998") rint(" Mean relative skill for all teams from the years 1996-1998 ean = assigned_years_league_df[ 'elo_n' ]. mean() Standard deviation for the relative skill of all teams from the years 2013-2015 tdev = assigned_years_league_df['elo_n' ]. std( ) = len(assigned_years_league_df ) Confidence interval tderr = stdev/(n ** 0.5) onf_int_95 = st. norm. interval(0.95, mean, stderr) rint ("95% confidence interval (unrounded) for Average Relative Skill (ELO) in the years 1996 to 1998 =", conf_int_95) rint("95% confidence interval (rounded) for Average Relative Skill (ELO) in the years 1996 to 1998 = (", round(conf_int_95[0], 2) rint (" \ ") rint("Probability a team has Average Relative Skill LESS than the Average Relative Skill (ELO) of Bulls in the years 1996 to 1998 rint (" - - ean_elo_assigned_team = assigned_years_df[ 'elo_n' ]. mean() hoicel = st. norm. cdf(mean_elo_assigned_years, mean, stdev) hoice2 = st. norm. cdf(mean_elo_assigned_years, mean, stdev) # Pick the correct answer. rint ("choice1 =", round(choice1, 4) ) rint ("choice2 =", round(choice2, 4) )Confidence Interval for Average Relative Skill in the years 1996 to 1998 Name Error Traceback (most recent call last)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started