Python: Run a paired bootstrap test to compare the means e1 and e2. I was able to make a bootstrap test to find whether or not two datasets have significantly different means but I'm not sure what to add to make it a paired bootstrap. The paired bootstrap should look exactly like this but with one added component. What would need to be added to make it a paired bootstrap? e1_2 = e1_sub + e1_e2_com e2_2 = e2_sub + e1_e2_com # create array to hold bootstrap mean differences nbootstraps = 10000 bs_mean_diffs = np.zeros(nbootstraps) # take bootstrap samples many times for ii in range(nbootstraps): # choose which indices will be used from e1_2 and e2_2 inds1 = np.random.randint(0,len(e1)) inds2 = np.random.randint(0,len(e2)) # create your bootstrap samples bs_e1 = e1_2[inds1] bs_e2 = e2_2[inds2]    # measure their difference and store it bs_mean_diffs[ii] = bs_e1.mean()- bs_e2.mean() # take the absolute value of each bootstrap difference, and find the fraction that are # larger than the absolute mean difference between d1 and d2. this is the bootstrap p-value bs_pval = (np.abs(bs_mean_diffs) > np.abs(np.mean(e1) - np.mean(e2))).mean() print('bootstrap p-value:', bs_pval) Output: bootstrap p-value :0.9422

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%
Please send me answer within 10 mins I will upvote your answer for must. Python: Run a paired bootstrap test to compare the means e1 and e2. I was able to make a bootstrap test to find whether or not two datasets have significantly different means but I'm not sure what to add to make it a paired bootstrap. The paired bootstrap should look exactly like this but with one added component. What would need to be added to make it a paired bootstrap? e1_2 = e1_sub + e1_e2_com e2_2 = e2_sub + e1_e2_com # create array to hold bootstrap mean differences nbootstraps = 10000 bs_mean_diffs = np.zeros(nbootstraps) # take bootstrap samples many times for ii in range(nbootstraps): # choose which indices will be used from e1_2 and e2_2 inds1 = np.random.randint(0,len(e1)) inds2 = np.random.randint(0,len(e2)) # create your bootstrap samples bs_e1 = e1_2[inds1] bs_e2 = e2_2[inds2]    # measure their difference and store it bs_mean_diffs[ii] = bs_e1.mean()- bs_e2.mean() # take the absolute value of each bootstrap difference, and find the fraction that are # larger than the absolute mean difference between d1 and d2. this is the bootstrap p-value bs_pval = (np.abs(bs_mean_diffs) > np.abs(np.mean(e1) - np.mean(e2))).mean() print('bootstrap p-value:', bs_pval) Output: bootstrap p-value :0.9422
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Topological Sort
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education