lab08 DATA MISC| University of California, Berkeley
lab08 August 6, 2019 [1]: # Initialize OK from ook import Notebook ok = Notebook('') ===================================================================== Assignment: Resampling and the Bootstrap OK, version v1.12.5 ===================================================================== 1 Lab 8: Resampling and the Bootstrap The British Royal Air Force wanted to know how many warplanes the Germans had (some number N, which is a parameter), and they needed to estimate that quantity knowing only a random sample of the planes’ serial numbers (from 1 to N). We know that the German’s warplanes are labeled consecutively from 1 to N, so N would be the total number of warplanes they have. We normally investigate the random variation among our estimates by simulating a sampling procedure from the population many times and computing estimates from each sample that we generate. In real life, if the RAF had known what the population looked like, they would have known N and would not have had any reason to think about random sampling. However, they didn’t know what the population looked like, so they couldn’t have run the simulations that we normally do. Simulating a sampling procedure many times was a useful exercise in understanding random variation for an estimate, but it’s not as useful as a tool for practical data analysis. Let’s flip that sampling idea on its head to make it practical. Given just a random sample of serial numbers, we’ll estimate N, and then we’ll use simulation to find out how accurate our estimate probably is, without ever looking at the whole population. This is an example of statistical inference. As usual, run the cell below to prepare the lab and the automatic tests. [3]: # Run this cell to set up the notebook, but please don't change it. # These lines import the Numpy and Datascience modules. import numpy as np from datascience import * # These lines do some fancy plotting magic. 1 import matplotlib %matplotlib inline import t as plt ('fivethirtyeight') import warnings efilter('ignore', FutureWarning) # These lines load the tests. from ook import Notebook ok = Notebook('') _ = t() ===========================================
Geschreven voor
- Instelling
- Dominican University Of California
- Vak
- DATA MISC
Documentinformatie
- Geüpload op
- 27 oktober 2022
- Aantal pagina's
- 14
- Geschreven in
- 2022/2023
- Type
- Tentamen (uitwerkingen)
- Bevat
- Vragen en antwoorden
Onderwerpen
-
lab08 data misc
-
university of california
-
berkeley