Systematic Sampling Lecture 9 – Part 1 Sections 2.8 Wed, Jan 30, 2008.

Slides:



Advertisements
Similar presentations
HAWKES LEARNING SYSTEMS Students Matter. Success Counts. Copyright © 2013 by Hawkes Learning Systems/Quant Systems, Inc. All rights reserved. Section 8.4.
Advertisements

CHAPTER 13: Binomial Distributions
1 More about the Confidence Interval of the Population Mean.
Chapter 7 Systematic Sampling n Selection of every kth case from a list of possible subjects.
POPULATION- the entire group of individuals that we want information about SAMPLE- the part of the population that we actually examine in order to gather.
Chapter 2: Sampling and Surveys Section 2.1: Samples, Good and Bad.
Bias and Variability Lecture 28 Section 8.3 Tue, Oct 25, 2005.
1-3 Data Collection and Sampling Techniques Surveys are the most common method of collecting data. Three methods of surveying are: 1) Telephone surveys.
COUNTING POPULATIONS Estimations & Random Samples.
Counting Subsets of a Set: Combinations Lecture 31 Section 6.4 Wed, Mar 21, 2007.
Collection of Data Chapter 4. Three Types of Studies Survey Survey Observational Study Observational Study Controlled Experiment Controlled Experiment.
1/19/00 Survey Methodology Sampling EPID 626 Lecture 2.
Counting Subsets of a Set: Combinations Lecture 28 Section 6.4 Wed, Mar 2, 2005.
1 Systematic Sampling (SYS) Up to now, we have only considered one design: SRS of size n from a population of size N New design: SYS DEFN: A 1-in-k systematic.
The Practice of Statistics, 4 th edition – For AP* STARNES, YATES, MOORE Chapter 8: Estimating with Confidence Section 8.2 Estimating a Population Proportion.
The Sampling Distribution of
Sampling Design and Analysis MTH 494 Lecture-22 Ossam Chohan Assistant Professor CIIT Abbottabad.
Chapter 10 Sampling: Theories, Designs and Plans.
Chapter One Data Collection 1.3 Other Types of Sampling.
Lectures prepared by: Elchanan Mossel Yelena Shvets Introduction to probability Stat 134 FAll 2005 Berkeley Follows Jim Pitman’s book: Probability Section.
Section 7.4 Use of Counting Techniques in Probability.
Ch1 Larson/Farber 1 Elementary Statistics Math III Introduction to Statistics.
Copyright © 2013, 2010 and 2007 Pearson Education, Inc. Chapter Data Collection 1.
SECTION 1.1 SAMPLING. Objectives 1. Construct a simple random sample 2. Determine when samples of convenience are acceptable 3. Describe stratified sampling,
SAMPLING. Voluntary Response Individuals choose to join the sample in response to an open invitation.
Chapter 2 Lesson 2.2b Collecting Data Sensibly 2.2: Sampling.
Stratified Sampling Lecture 8 Section 2.6 Wed, Jan 28, 2004.
Does a Person’s Income Relate to Their Age?. Variables  Annual Income Measured in Dollars per Year  Age of Individual Measured in Years.
Populations and Samples. Warm Up
Unit 1: Producing Data. 1.1: Sampling – Good & Bad Methods Define sampling methods. Interpret the use of different sampling methods for different scenarios.
Heights  Put your height in inches on the front board.  We will randomly choose 5 students at a time to look at the average of the heights in this class.
Bias and Variability Lecture 27 Section 8.3 Wed, Nov 3, 2004.
Counting Subsets of a Set: Combinations Lecture 28 Section 6.4 Thu, Mar 30, 2006.
Honors Stats 3 Day 5. Do Now 1) Round 2 Match game! Turn all the cards over and match the examples to the bias 2) Check your HW: Questions??
Other Sampling Methods Lecture 7 Sections 2.6 – 2.8 Tue, Jan 31, 2006.
Descartes’ Rule of Signs
Other Sampling Methods
Section 4.2 Random Sampling.
Discrete and Continuous Random Variables
Lecture 28 Section 8.3 Fri, Mar 4, 2005
Chapter 1 Data Collection.
Math 145 June 25, 2013.
Other Sampling Methods
Simple Random Sampling
جمعیت –نمونه –روشهای نمونه گیری دکتر محسن عسکرشاهی دکترای آمار زيستی
The Language of Sampling
Sampling Distribution
Sampling Distribution
Other Sampling Methods
Math 145.
Selecting Two Vouchers
STAT 145.
Math 145 January 28, 2015.
Sampling.
Lecture 43 Section 10.1 Wed, Apr 6, 2005
Continuous Random Variables
Counting Elements of Disjoint Sets: The Addition Rule
STAT 245.
Simple Random Sampling
Chapter 7: Sampling Distributions
1/10/ Sample Proportions.
Counting Elements of Disjoint Sets: The Addition Rule
Sampling Techniques Statistics.
Mathematical Induction II
Math 145 May 23, 2016.
Representative sampling By Majed Muati. Sampling Methods Representative Samples. Random Sampling. Systematic Sampling.
Surveys How to create one.
Simple Random Sampling
Other Sampling Methods
Presentation transcript:

Systematic Sampling Lecture 9 – Part 1 Sections 2.8 Wed, Jan 30, 2008

Systematic Sampling 1-in-k systematic sampling.

Systematic Sampling To determine k, divide the population size N by the desired sample size n. Let k = N/n (rounded off).

Systematic Sampling Then choose a random starting point from 1 to k. That is, choose a member at random from the first block of size k. From that starting point, count off every k th member and put them in the sample.

Example Suppose we want to select n = 5 members from a population of size N = 52. Compute k = 52/5  10. Use randInt(1, 10) to get a random integer from 1 to 10. Say we get 6. Then select members 6, 16, 26, 36, 46 to be in the sample.

The Sample Size Notice that, since 52/10 = 5.2, the sample size could end being either 5 or 6, depending on the starting point. Had the starting point been 2, then the sample would have been 2, 12, 22, 32, 42, 52 (6 members).