subject
Computers and Technology, 25.04.2020 01:17 sebby33

It's time to bootstrap so that we can quantify the variability in our estimate! Simulate 1000 resamples from close_novas. For each resample, compute the slope of the least-squares regression line, and multiply it by 1 million to compute an estimate of the age of the universe. Store these ages in an array called bootstrap_ages, and then use them to compute a 95% confidence interval for the age of the universe.

bootstrap_ages = make_array()

for i in np. arange(1000):

bootstrap_ages = np. append(bootstrap_ages, 1e6*fit_line(close_novas. sample

lower_end = percentile(2.5, bootstrap_ages)

upper_end = percentile(97.5, bootstrap_ages)

Table().with_column("Age estimate", bootstrap_ages*1e-9).hist(bins=np. arange(12, 16, .1), unit= "billion years")

print("95% confidence interval for the age of the universe: [{:g}, {:g}] billion years".format(lower_end*1e-9, upper_end*1e-9)

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 19:50
Python write an expression that executes the loop body as long as the user enters a non-negative number. note: if the submitted code has an infinite loop, the system will stop running the code after a few seconds and report "program end never reached." the system doesn't print the test case that caused the reported message. sample outputs with inputs: 9 5 2 -1
Answers: 3
question
Computers and Technology, 22.06.2019 22:30
What is the most popular genre of video games?
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
Norder to receive financial aid at his vocational school, mario must fill out the fafsa. the fafsa is a form that must be completed to determine . in order to complete a fafsa, you must submit . the fafsa can students obtain
Answers: 2
question
Computers and Technology, 23.06.2019 21:30
Examine the list below. which factors positively affect lifetime income? check all that apply.
Answers: 1
You know the right answer?
It's time to bootstrap so that we can quantify the variability in our estimate! Simulate 1000 resamp...
Questions
question
History, 20.09.2019 17:00
question
Mathematics, 20.09.2019 17:00
Questions on the website: 13722363