Sampling in Space and Time. Natural experiment? Analytical Surveys

Size: px
Start display at page:

Download "Sampling in Space and Time. Natural experiment? Analytical Surveys"

Transcription

1 Sampling in Space and Time Overview of Sampling Approaches Sampling versus Experimental Design Experiments deliberately perturb a portion of population to determine effect objective is to compare the mean response to changes in levels of the factors Sampling see what the population is like without disturbing it objective is to describe the characteristics of the population Natural experiment? Experimental Studies Researcher controls the assignment of the explanatory variables while measuring the response variables Analytical and Observational surveys neither the explanatory nor response variables are under control of the researcher sub-populations are selected and sampled to estimate the observed differences among the subpopulation Analytical Surveys Identify potential explanatory variables (similar to factors in experimental studies) Subdivided into categories depending on the type of stratification the population is pre-stratified by the explanatory variables and sample in each stratum; the population is sampled, and post-stratified by the explanatory variables; the explanatory variables can be used as auxiliary variables in ratio or regression methods. The principle steps in Sampling The principle steps in a survey State the objectives of the survey Define the population to be sampled what is the range of animals or locations to be measured? Establish what data are to be collected you don t t need to collect everything What degree of precision is required examine power needed What is your sample population? the list of all available sampling units often very difficult to establish - e.g. a list of all streams in the central interior of British Columbia; mountain goats in the population under study 1

2 Stratification? Many sampling approaches simple random sampling systematic sample cluster sampling multi-stage design All designs can be improved by stratification Always consider when designing a sampling regime Before you begin? Pre-test try out field methods and questionnaires Probability sampling versus nonprobability sampling Probability sampling units are chosen randomly Non-probability sampling units are chosen in some deliberate fashion Probability Sampling every unit has a known probability of being sampled sample is drawn with some method consistent with these probabilities these selection probabilities are used when making estimates from the sample Advantages sampling biases can be studied standard errors and measures of precision can be obtained Non-probability sampling Quotas select 50 of each sex from the population less expensive than a probability sample may be only option if can t identify sample population Judgement select typical units can perform well if there are a few extreme points which should not be included Convenience select those readily available; useful if is dangerous or unpleasant to sample directly selecting blood samples from grizzly bears Non-probability sampling Haphazard This is often useful if the sampling material is homogeneous and spread throughout the population, e.g. chemicals in drinking water 2

3 Non-probability sampling Disadvantages unable to assess biases no estimates of precision use of formulae from probability sampling is WRONG!. Randomization Remove the possibility of bias in the selection of a sample Sometimes this is simply not possible When this happens and the investigators wish to use the results of a nonrandomized sample, then the final report should discuss the possibility of selection bias and its potential impact on the conclusions. Sampling Where should I take my samples? How should I take my samples? How many samples should I take? Sampling How much work do I need to do? How many samples should I take? How many samples should I take? By previous sampling of a similar population By the results of a pilot study By guesswork By two-stage sampling Simple Random Sample Simple random sampling, or random sampling without replacement, is sampling in which n distinct units are selected from the N units in the population in such a way that every possible combination of n units is equally likely to be sampled. Examples? 3

4 Simple Random Sample Examples? Sampling Does this mean that all units in the population have to always be sampled with the same intensity? In some cases, not possible to randomly select sample units from the population An alternative is to take a systematic sample where every k th unit is selected (after a random starting point) k is chosen to give the required sample size For example, if a stream is 2 km long, and 20 samples are required then k = 100 and samples are chosen every 100 m along the stream after a random starting point If a known trend is present in the sample, this can be incorporated into the analysis e.g., sample follows an elevation gradient that is known to directly influence the response variable. A regression-type correction can be incorporated into the analysis This trend must be known from external sources - it cannot be deduced from the survey. If a systematic sample happens to match a cyclic pattern in the population, values within the systematic sample are highly positively correlated precision is worse than a SRS of the same size Because the units are positively correlated within the sample, the sample variance will underestimate the true variation in the population 4

5 Instead of taking a single systematic sample every k th unit, take 2 or 3 independent systematic samples of every 2k th or 3k th unit, each with a different starting point Rather than taking a single systematic sample every 100 m along the stream, two independent systematic samples can be taken, each selecting units every 200 m along the stream starting at two random starting points. The total sample effort is still the same, but now some measure of the large scale spatial structure can be estimated. This technique is known as replicated sub-sampling But what if you are trying to determine pattern? For temporal pattern could repeatedly sample Apply concepts of stratification to time? Stratified Random Sampling The population is partitioned into regions or strata, and a sample is selected within each strata. The principle of stratification is to partition the strata so that units within a strata are as similar as possible. Stratified Random Sampling Cluster Sampling Units in a population occur naturally in groups or clusters e.g., some animals congregate in herds or family units select a random sample of herds and then measure every animal in the herd not the same as a simple random sample of animals because individual animals are not randomly selected; the herds are the sampling unit 5

6 Cluster Sampling Another example is circular plot sampling; all trees within a specified radius of a randomly selected point are measured, but the sampling unit is the circular plot and trees within the plot are sub-samples. Adaptive Sampling Adaptive sampling refers to sampling designs in which the procedure for selecting units to be included may depend on values of samples during the survey Adaptive Sampling Adaptive Sampling Adaptive Sampling Multi-phase Sampling In some surveys, multiple surveys of the same survey units are performed. In the first phase, a sample of units is selected (SRS); every unit is measured on some variable In subsequent phases, samples are selected ONLY from those units selected in the first phase, not from the entire population. 6

7 Multi-phase Sampling Multi-phase Sampling Multi-phase Sampling Sometimes difficult to stratify a population in advance because the values of the stratification variables are unknown The first phase is used to measure the stratification variable on a random sample of units Selected units are then stratified, and further samples are taken from each stratum as needed to measure a second variable Avoids having to measure the second variable on every unit when the strata differ in importance. Multi-phase Sampling For example, in first phase plots selected and measured for the amount of insect damage Plots then stratified by the amount of damage, and second phase allocation of units concentrates on plots with low insect damage to measure total usable volume of wood Little value to measure the volume of wood on plot with much insect damage Multi-phase Sampling Need to estimate the volume of wood removed from a harvesting area A large sample of logging trucks is weighed (surrogate of volume) Smaller sample of trucks (selected from those weighed) is scaled for volume and the relationship between volume and weight from the second phase sample is used to predict volume based on weight only for the first phase sample Double Sampling Initially a sample of units is selected and then additional data is collected from a subset of the original samples 7

8 Double Sampling Repeated Sampling ACTUAL Separate independent surveys can be conducted at each time point observations are independent over time, but additional variability introduced by having new units sampled at each time point ESTIMATE Repeated Sampling Plot Shape? Permanent study plots can be established that are re-measured for regeneration over time. comparisons over time are free of additional variability introduced by new units being measured at every time point sample size will tend to decline over time Generating Random Variables Uniform Random Variables RAND() returns an evenly distributed random number greater than or equal to 0 and less than 1. A new random number is returned every time the worksheet is calculated. Generating Random Variables To generate a random real number between a and b, use: RAND()*(b-a)+a a)+a.. You can convince yourself of this by seeing that to generate a random number between 0 and 100 this formula simplifies to RAND()*100. In order to get integer random numbers between 0 and 100 use the formula =INT((RAND()*100)+0.5) [if analysis toolpak loaded] Why do we need to add 0.5 before taking the integer of this value? 8

9 Normally Distributed Random Variables An alternate way to generate random numbers between two numbers is using the RANDBETWEEN(bottom,top) function Bottom is the smallest integer RANDBETWEEN will return and top is the largest integer RANDBETWEEN will return Alternatively, the Box-Muller method allows you to generate normal deviates with mean and standard deviation from uniform random numbers by applying the formula NORM (, ) 2 ln( rand()) cos(2* rand()) Random numbers within a radius Random numbers within a radius Random distance and bearing from centre of circle? Random numbers within a radius Random numbers within a radius Overlay square and pick pairs of random points to see if they fall within the circle (distance from centre less than radius) If OK keep, otherwise reject and then get new pair 9

10 Distance Sampling Distance Sampling Estimating the abundance of an item based on its detectability Distance Sampling Nested Designs What happens if we draw our samples from a number of different subpopulations or areas? n D 2 L a Are they still all replicates of each other? Nested Designs Spatial Patterns (Random) within 10

11 Spatial Patterns (Clumped) Spatial Patterns (Uniform) Spatial Patterns s 2 X 11

SAMPLING- Method of Psychology. By- Mrs Neelam Rathee, Dept of Psychology. PGGCG-11, Chandigarh.

SAMPLING- Method of Psychology. By- Mrs Neelam Rathee, Dept of Psychology. PGGCG-11, Chandigarh. By- Mrs Neelam Rathee, Dept of 2 Sampling is that part of statistical practice concerned with the selection of a subset of individual observations within a population of individuals intended to yield some

More information

Sampling. Sampling. Sampling. Sampling. Population. Sample. Sampling unit

Sampling. Sampling. Sampling. Sampling. Population. Sample. Sampling unit Defined is the process by which a portion of the of interest is drawn to study Technically, any portion of a is a sample. However, not all samples are good samples. Population Terminology A collection

More information

Examine characteristics of a sample and make inferences about the population

Examine characteristics of a sample and make inferences about the population Chapter 11 Introduction to Inferential Analysis Learning Objectives Understand inferential statistics Explain the difference between a population and a sample Explain the difference between parameter and

More information

Lecturer: Dr. Adote Anum, Dept. of Psychology Contact Information:

Lecturer: Dr. Adote Anum, Dept. of Psychology Contact Information: Lecturer: Dr. Adote Anum, Dept. of Psychology Contact Information: aanum@ug.edu.gh College of Education School of Continuing and Distance Education 2014/2015 2016/2017 Session Overview In this Session

More information

Module 16. Sampling and Sampling Distributions: Random Sampling, Non Random Sampling

Module 16. Sampling and Sampling Distributions: Random Sampling, Non Random Sampling Module 16 Sampling and Sampling Distributions: Random Sampling, Non Random Sampling Principal Investigator Co-Principal Investigator Paper Coordinator Content Writer Prof. S P Bansal Vice Chancellor Maharaja

More information

CROSS SECTIONAL STUDY & SAMPLING METHOD

CROSS SECTIONAL STUDY & SAMPLING METHOD CROSS SECTIONAL STUDY & SAMPLING METHOD Prof. Dr. Zaleha Md. Isa, BSc(Hons) Clin. Biochemistry; PhD (Public Health), Department of Community Health, Faculty of Medicine, Universiti Kebangsaan Malaysia

More information

POPULATION AND SAMPLE

POPULATION AND SAMPLE 1 POPULATION AND SAMPLE Population. A population refers to any collection of specified group of human beings or of non-human entities such as objects, educational institutions, time units, geographical

More information

FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E

FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E OBJECTIVE COURSE Understand the concept of population and sampling in the research. Identify the type

More information

Lecture 5: Sampling Methods

Lecture 5: Sampling Methods Lecture 5: Sampling Methods What is sampling? Is the process of selecting part of a larger group of participants with the intent of generalizing the results from the smaller group, called the sample, to

More information

TYPES OF SAMPLING TECHNIQUES IN PHYSICAL EDUCATION AND SPORTS

TYPES OF SAMPLING TECHNIQUES IN PHYSICAL EDUCATION AND SPORTS TYPES OF SAMPLING TECHNIQUES IN PHYSICAL EDUCATION AND SPORTS Daksh Sharma Assistant Professor of Phy.Edu, SGGS Khalsa Mahilpur ABSTRACT In sports statistics, sampling techniques has a immense importance

More information

Part I. Sampling design. Overview. INFOWO Lecture M6: Sampling design and Experiments. Outline. Sampling design Experiments.

Part I. Sampling design. Overview. INFOWO Lecture M6: Sampling design and Experiments. Outline. Sampling design Experiments. Overview INFOWO Lecture M6: Sampling design and Experiments Peter de Waal Sampling design Experiments Department of Information and Computing Sciences Faculty of Science, Universiteit Utrecht Lecture 4:

More information

CHOOSING THE RIGHT SAMPLING TECHNIQUE FOR YOUR RESEARCH. Awanis Ku Ishak, PhD SBM

CHOOSING THE RIGHT SAMPLING TECHNIQUE FOR YOUR RESEARCH. Awanis Ku Ishak, PhD SBM CHOOSING THE RIGHT SAMPLING TECHNIQUE FOR YOUR RESEARCH Awanis Ku Ishak, PhD SBM Sampling The process of selecting a number of individuals for a study in such a way that the individuals represent the larger

More information

Part 3: Inferential Statistics

Part 3: Inferential Statistics - 1 - Part 3: Inferential Statistics Sampling and Sampling Distributions Sampling is widely used in business as a means of gathering information about a population. Reasons for Sampling There are several

More information

SYA 3300 Research Methods and Lab Summer A, 2000

SYA 3300 Research Methods and Lab Summer A, 2000 May 17, 2000 Sampling Why sample? Types of sampling methods Probability Non-probability Sampling distributions Purposes of Today s Class Define generalizability and its relation to different sampling strategies

More information

Introduction to Survey Data Analysis

Introduction to Survey Data Analysis Introduction to Survey Data Analysis JULY 2011 Afsaneh Yazdani Preface Learning from Data Four-step process by which we can learn from data: 1. Defining the Problem 2. Collecting the Data 3. Summarizing

More information

Prepared by: DR. ROZIAH MOHD RASDI Faculty of Educational Studies Universiti Putra Malaysia

Prepared by: DR. ROZIAH MOHD RASDI Faculty of Educational Studies Universiti Putra Malaysia Prepared by: DR. ROZIAH MOHD RASDI Faculty of Educational Studies Universiti Putra Malaysia roziah_m@upm.edu.my Topic 11 Sample Selection Introduction Strength of quantitative research method its ability

More information

Sampling Techniques and Questionnaire Design

Sampling Techniques and Questionnaire Design Sampling Techniques and Questionnaire Design Department of Political Science and Government Aarhus University September 29, 2014 1 Stratified Sampling 2 Cluster Sampling 3 Questionnaire Design 4 Preview

More information

9/2/2010. Wildlife Management is a very quantitative field of study. throughout this course and throughout your career.

9/2/2010. Wildlife Management is a very quantitative field of study. throughout this course and throughout your career. Introduction to Data and Analysis Wildlife Management is a very quantitative field of study Results from studies will be used throughout this course and throughout your career. Sampling design influences

More information

Taking into account sampling design in DAD. Population SAMPLING DESIGN AND DAD

Taking into account sampling design in DAD. Population SAMPLING DESIGN AND DAD Taking into account sampling design in DAD SAMPLING DESIGN AND DAD With version 4.2 and higher of DAD, the Sampling Design (SD) of the database can be specified in order to calculate the correct asymptotic

More information

Module 4 Approaches to Sampling. Georgia Kayser, PhD The Water Institute

Module 4 Approaches to Sampling. Georgia Kayser, PhD The Water Institute Module 4 Approaches to Sampling Georgia Kayser, PhD 2014 The Water Institute Objectives To understand the reasons for sampling populations To understand the basic questions and issues in selecting a sample.

More information

Stochastic calculus for summable processes 1

Stochastic calculus for summable processes 1 Stochastic calculus for summable processes 1 Lecture I Definition 1. Statistics is the science of collecting, organizing, summarizing and analyzing the information in order to draw conclusions. It is a

More information

Georgia Kayser, PhD. Module 4 Approaches to Sampling. Hello and Welcome to Monitoring Evaluation and Learning: Approaches to Sampling.

Georgia Kayser, PhD. Module 4 Approaches to Sampling. Hello and Welcome to Monitoring Evaluation and Learning: Approaches to Sampling. Slide 1 Module 4 Approaches to Sampling Georgia Kayser, PhD Hello and Welcome to Monitoring Evaluation and Learning: Approaches to Sampling Slide 2 Objectives To understand the reasons for sampling populations

More information

Part 7: Glossary Overview

Part 7: Glossary Overview Part 7: Glossary Overview In this Part This Part covers the following topic Topic See Page 7-1-1 Introduction This section provides an alphabetical list of all the terms used in a STEPS surveillance with

More information

Automated Survey Design

Automated Survey Design Automated Survey Design Aim: Use geographic information system (GIS) within Distance to aid survey design and evaluate the properties of different designs See: Chapter 7 of Buckland et al. (2004) Advanced

More information

Explain the role of sampling in the research process Distinguish between probability and nonprobability sampling Understand the factors to consider

Explain the role of sampling in the research process Distinguish between probability and nonprobability sampling Understand the factors to consider Visanou Hansana Explain the role of sampling in the research process Distinguish between probability and nonprobability sampling Understand the factors to consider when determining sample size Understand

More information

MN 400: Research Methods. CHAPTER 7 Sample Design

MN 400: Research Methods. CHAPTER 7 Sample Design MN 400: Research Methods CHAPTER 7 Sample Design 1 Some fundamental terminology Population the entire group of objects about which information is wanted Unit, object any individual member of the population

More information

EC969: Introduction to Survey Methodology

EC969: Introduction to Survey Methodology EC969: Introduction to Survey Methodology Peter Lynn Tues 1 st : Sample Design Wed nd : Non-response & attrition Tues 8 th : Weighting Focus on implications for analysis What is Sampling? Identify the

More information

Sampling. General introduction to sampling methods in epidemiology and some applications to food microbiology study October Hanoi

Sampling. General introduction to sampling methods in epidemiology and some applications to food microbiology study October Hanoi Sampling General introduction to sampling methods in epidemiology and some applications to food microbiology study October 2006 - Hanoi Stéphanie Desvaux, François Roger, Sophie Molia CIRAD Research Unit

More information

TECH 646 Analysis of Research in Industry and Technology

TECH 646 Analysis of Research in Industry and Technology TECH 646 Analysis of Research in Industry and Technology PART III The Sources and Collection of data: Measurement, Measurement Scales, Questionnaires & Instruments, Sampling Ch. 14 Sampling Lecture note

More information

Unequal Probability Designs

Unequal Probability Designs Unequal Probability Designs Department of Statistics University of British Columbia This is prepares for Stat 344, 2014 Section 7.11 and 7.12 Probability Sampling Designs: A quick review A probability

More information

TECH 646 Analysis of Research in Industry and Technology

TECH 646 Analysis of Research in Industry and Technology TECH 646 Analysis of Research in Industry and Technology PART III The Sources and Collection of data: Measurement, Measurement Scales, Questionnaires & Instruments, Ch. 14 Lecture note based on the text

More information

Why do we Care About Forest Sampling?

Why do we Care About Forest Sampling? Fundamentals of Forest Sampling Why Forest Sampling Sampling Theory Terminology Why Use a Sample? Readings: Avery and Burkhart Sampling Chapters Elzinga (website) USDA Sampling Handbook 232 (website) Why

More information

Now we will define some common sampling plans and discuss their strengths and limitations.

Now we will define some common sampling plans and discuss their strengths and limitations. Now we will define some common sampling plans and discuss their strengths and limitations. 1 For volunteer samples individuals are self selected. Participants decide to include themselves in the study.

More information

Non-uniform coverage estimators for distance sampling

Non-uniform coverage estimators for distance sampling Abstract Non-uniform coverage estimators for distance sampling CREEM Technical report 2007-01 Eric Rexstad Centre for Research into Ecological and Environmental Modelling Research Unit for Wildlife Population

More information

Sampling Techniques. Esra Akdeniz. February 9th, 2016

Sampling Techniques. Esra Akdeniz. February 9th, 2016 Sampling Techniques Esra Akdeniz February 9th, 2016 HOW TO DO RESEARCH? Question. Literature research. Hypothesis. Collect data. Analyze data. Interpret and present results. HOW TO DO RESEARCH? Collect

More information

AP Statistics Cumulative AP Exam Study Guide

AP Statistics Cumulative AP Exam Study Guide AP Statistics Cumulative AP Eam Study Guide Chapters & 3 - Graphs Statistics the science of collecting, analyzing, and drawing conclusions from data. Descriptive methods of organizing and summarizing statistics

More information

Module 9: Sampling IPDET. Sampling. Intro Concepts Types Confidence/ Precision? How Large? Intervention or Policy. Evaluation Questions

Module 9: Sampling IPDET. Sampling. Intro Concepts Types Confidence/ Precision? How Large? Intervention or Policy. Evaluation Questions IPDET Module 9: Sampling Sampling Intervention or Policy Evaluation Questions Design Approaches Data Collection Intro Concepts Types Confidence/ Precision? How Large? Introduction Introduction to Sampling

More information

CHE Chemical Engineering Operations

CHE Chemical Engineering Operations CHE 3730 - Chemical Engineering Operations Venkat Padmanabhan, PhD Department of Chemical Engineering Tennessee Tech University Lecture 2 - Population Sampling 1/19/2017 CHE 3730 - Chemical Engineering

More information

Q.1 Define Population Ans In statistical investigation the interest usually lies in the assessment of the general magnitude and the study of

Q.1 Define Population Ans In statistical investigation the interest usually lies in the assessment of the general magnitude and the study of Q.1 Define Population Ans In statistical investigation the interest usually lies in the assessment of the general magnitude and the study of variation with respect to one or more characteristics relating

More information

CPT Section D Quantitative Aptitude Chapter 15. Prof. Bharat Koshti

CPT Section D Quantitative Aptitude Chapter 15. Prof. Bharat Koshti CPT Section D Quantitative Aptitude Chapter 15 Prof. Bharat Koshti Different Methods of Sampling 1. Probability Sampling Methods 2. Non-Probabilistic Sampling Methods 3. Mixed Sampling Methods (1) Probability

More information

Lesson 6 Population & Sampling

Lesson 6 Population & Sampling Lesson 6 Population & Sampling Lecturer: Dr. Emmanuel Adjei Department of Information Studies Contact Information: eadjei@ug.edu.gh College of Education School of Continuing and Distance Education 2014/2015

More information

Prime Factorization and GCF. In my own words

Prime Factorization and GCF. In my own words Warm- up Problem What is a prime number? A PRIME number is an INTEGER greater than 1 with EXACTLY 2 positive factors, 1 and the number ITSELF. Examples of prime numbers: 2, 3, 5, 7 What is a composite

More information

Sampling Theory in Statistics Explained - SSC CGL Tier II Notes in PDF

Sampling Theory in Statistics Explained - SSC CGL Tier II Notes in PDF Sampling Theory in Statistics Explained - SSC CGL Tier II Notes in PDF The latest SSC Exam Dates Calendar is out. According to the latest update, SSC CGL Tier II Exam will be conducted from 18th to 20th

More information

Sociology 6Z03 Review I

Sociology 6Z03 Review I Sociology 6Z03 Review I John Fox McMaster University Fall 2016 John Fox (McMaster University) Sociology 6Z03 Review I Fall 2016 1 / 19 Outline: Review I Introduction Displaying Distributions Describing

More information

Inferential Statistics. Chapter 5

Inferential Statistics. Chapter 5 Inferential Statistics Chapter 5 Keep in Mind! 1) Statistics are useful for figuring out random noise from real effects. 2) Numbers are not absolute, and they can be easily manipulated. 3) Always scrutinize

More information

Notes 3: Statistical Inference: Sampling, Sampling Distributions Confidence Intervals, and Hypothesis Testing

Notes 3: Statistical Inference: Sampling, Sampling Distributions Confidence Intervals, and Hypothesis Testing Notes 3: Statistical Inference: Sampling, Sampling Distributions Confidence Intervals, and Hypothesis Testing 1. Purpose of statistical inference Statistical inference provides a means of generalizing

More information

Survey Sample Methods

Survey Sample Methods Survey Sample Methods p. 1/54 Survey Sample Methods Evaluators Toolbox Refreshment Abhik Roy & Kristin Hobson abhik.r.roy@wmich.edu & kristin.a.hobson@wmich.edu Western Michigan University AEA Evaluation

More information

Ch. 16 SAMPLING DESIGNS AND SAMPLING PROCEDURES

Ch. 16 SAMPLING DESIGNS AND SAMPLING PROCEDURES www.wernermurhadi.wordpress.com Ch. 16 SAMPLING DESIGNS AND SAMPLING PROCEDURES Dr. Werner R. Murhadi Sampling Terminology Sample is a subset, or some part, of a larger population. population (universe)

More information

Statistics 301: Probability and Statistics Introduction to Statistics Module

Statistics 301: Probability and Statistics Introduction to Statistics Module Statistics 301: Probability and Statistics Introduction to Statistics Module 1 2018 Introduction to Statistics Statistics is a science, not a branch of mathematics, but uses mathematical models as essential

More information

Sampling. Module II Chapter 3

Sampling. Module II Chapter 3 Sampling Module II Chapter 3 Topics Introduction Terms in Sampling Techniques of Sampling Essentials of Good Sampling Introduction In research terms a sample is a group of people, objects, or items that

More information

Application of Statistical Analysis in Population and Sampling Population

Application of Statistical Analysis in Population and Sampling Population Quest Journals Journal of Electronics and Communication Engineering Research Volume 2 ~ Issue 9 (2015) pp: 01-05 ISSN(Online) : 2321-5941 www.questjournals.org Research Paper Application of Statistical

More information

BIOSTATISTICS. Lecture 4 Sampling and Sampling Distribution. dr. Petr Nazarov

BIOSTATISTICS. Lecture 4 Sampling and Sampling Distribution. dr. Petr Nazarov Genomics Research Unit BIOSTATISTICS Lecture 4 Sampling and Sampling Distribution dr. Petr Nazarov 4-03-2016 petr.nazarov@lih.lu Lecture 4. Sampling and sampling distribution OUTLINE Lecture 4 Sampling

More information

Fundamentals of Applied Sampling

Fundamentals of Applied Sampling 1 Chapter 5 Fundamentals of Applied Sampling Thomas Piazza 5.1 The Basic Idea of Sampling Survey sampling is really quite remarkable. In research we often want to know certain characteristics of a large

More information

This module is part of the. Memobust Handbook. on Methodology of Modern Business Statistics

This module is part of the. Memobust Handbook. on Methodology of Modern Business Statistics This module is part of the Memobust Handbook on Methodology of Modern Business Statistics 26 March 2014 Method: Sample Co-ordination Using Simple Random Sampling with Permanent Random Numbers Contents

More information

SAMPLING II BIOS 662. Michael G. Hudgens, Ph.D. mhudgens :37. BIOS Sampling II

SAMPLING II BIOS 662. Michael G. Hudgens, Ph.D.  mhudgens :37. BIOS Sampling II SAMPLING II BIOS 662 Michael G. Hudgens, Ph.D. mhudgens@bios.unc.edu http://www.bios.unc.edu/ mhudgens 2008-11-17 14:37 BIOS 662 1 Sampling II Outline Stratified sampling Introduction Notation and Estimands

More information

Chapter 2 Sampling for Biostatistics

Chapter 2 Sampling for Biostatistics Chapter 2 Sampling for Biostatistics Angela Conley and Jason Pfefferkorn Abstract Define the terms sample, population, and statistic. Introduce the concept of bias in sampling methods. Demonstrate how

More information

STA304H1F/1003HF Summer 2015: Lecture 11

STA304H1F/1003HF Summer 2015: Lecture 11 STA304H1F/1003HF Summer 2015: Lecture 11 You should know... What is one-stage vs two-stage cluster sampling? What are primary and secondary sampling units? What are the two types of estimation in cluster

More information

PROFESSIONAL INSTITUTE OF SCIENCE & FASHION TECHNOLOGY HOUSE#10. ROAD#3/C,SECT#09, UTTARA MODEL TOWN, DHAKA-1230

PROFESSIONAL INSTITUTE OF SCIENCE & FASHION TECHNOLOGY HOUSE#10. ROAD#3/C,SECT#09, UTTARA MODEL TOWN, DHAKA-1230 20158/17/2015 11:49:58 AM sampling 1. The act, process, or technique of selecting an appropriate sample. A small portion, piece, or segment selected as a sample. 1. (Statistics) the process of selecting

More information

ICES training Course on Design and Analysis of Statistically Sound Catch Sampling Programmes

ICES training Course on Design and Analysis of Statistically Sound Catch Sampling Programmes ICES training Course on Design and Analysis of Statistically Sound Catch Sampling Programmes Sara-Jane Moore www.marine.ie General Statistics - backed up by case studies General Introduction to sampling

More information

3. When a researcher wants to identify particular types of cases for in-depth investigation; purpose less to generalize to larger population than to g

3. When a researcher wants to identify particular types of cases for in-depth investigation; purpose less to generalize to larger population than to g Chapter 7: Qualitative and Quantitative Sampling Introduction Quantitative researchers more concerned with sampling; primary goal to get a representative sample (smaller set of cases a researcher selects

More information

Sampling: What you don t know can hurt you. Juan Muñoz

Sampling: What you don t know can hurt you. Juan Muñoz Sampling: What you don t know can hurt you Juan Muñoz Outline of presentation Basic concepts Scientific Sampling Simple Random Sampling Sampling Errors and Confidence Intervals Sampling error and sample

More information

SURVEY SAMPLING. ijli~iiili~llil~~)~i"lij liilllill THEORY AND METHODS DANKIT K. NASSIUMA

SURVEY SAMPLING. ijli~iiili~llil~~)~ilij liilllill THEORY AND METHODS DANKIT K. NASSIUMA SURVEY SAMPLING THEORY AND METHODS DANKIT K. NASSIUMA ijli~iiili~llil~~)~i"lij liilllill 0501941 9 Table of Contents PREFACE 1 INTRODUCTION 1.1 Overview of researc h methods 1.2 Surveys and sampling 1.3

More information

ANALYSIS OF SURVEY DATA USING SPSS

ANALYSIS OF SURVEY DATA USING SPSS 11 ANALYSIS OF SURVEY DATA USING SPSS U.C. Sud Indian Agricultural Statistics Research Institute, New Delhi-110012 11.1 INTRODUCTION SPSS version 13.0 has many additional features over the version 12.0.

More information

ECON1310 Quantitative Economic and Business Analysis A

ECON1310 Quantitative Economic and Business Analysis A ECON1310 Quantitative Economic and Business Analysis A Topic 1 Descriptive Statistics 1 Main points - Statistics descriptive collecting/presenting data; inferential drawing conclusions from - Data types

More information

The Weight Scale System 13

The Weight Scale System 13 The Weight Scale System 3 March 03 3- Scaling Manual MFLNRORD Weight scaling is a sampling method where only a portion of the total production is measured or sampled, unlie piece scaling where all logs

More information

Population, Sample, and Sampling Techniques. Identify the Unit of Analysis. Unit of Analysis 4/9/2013. Dr. K. A. Korb UniJos

Population, Sample, and Sampling Techniques. Identify the Unit of Analysis. Unit of Analysis 4/9/2013. Dr. K. A. Korb UniJos Develop Research Question Plan Research Design Population, Sample, and Sampling Techniques Measurement Sampling Dr. K. A. Korb UniJos Data Collection Data Processing Data Analysis and Interpretation Unit

More information

Model Assisted Survey Sampling

Model Assisted Survey Sampling Carl-Erik Sarndal Jan Wretman Bengt Swensson Model Assisted Survey Sampling Springer Preface v PARTI Principles of Estimation for Finite Populations and Important Sampling Designs CHAPTER 1 Survey Sampling

More information

Introduction to Sample Survey

Introduction to Sample Survey Introduction to Sample Survey Girish Kumar Jha gjha_eco@iari.res.in Indian Agricultural Research Institute, New Delhi-12 INTRODUCTION Statistics is defined as a science which deals with collection, compilation,

More information

Sampling. Vorasith Sornsrivichai, M.D., FETP Cert. Epidemiology Unit, Faculty of Medicine, PSU

Sampling. Vorasith Sornsrivichai, M.D., FETP Cert. Epidemiology Unit, Faculty of Medicine, PSU Sampling Vorasith Sornsrivichai, M.D., FETP Cert. Epidemiology Unit, Faculty of Medicine, PSU Objectives 1. Explain the need for survey sampling 2. Define the following terms: Reference population, study

More information

Sampling. Where we re heading: Last time. What is the sample? Next week: Lecture Monday. **Lab Tuesday leaving at 11:00 instead of 1:00** Tomorrow:

Sampling. Where we re heading: Last time. What is the sample? Next week: Lecture Monday. **Lab Tuesday leaving at 11:00 instead of 1:00** Tomorrow: Sampling Questions Define: Sampling, statistical inference, statistical vs. biological population, accuracy, precision, bias, random sampling Why do people use sampling techniques in monitoring? How do

More information

Practical Statistics for the Analytical Scientist Table of Contents

Practical Statistics for the Analytical Scientist Table of Contents Practical Statistics for the Analytical Scientist Table of Contents Chapter 1 Introduction - Choosing the Correct Statistics 1.1 Introduction 1.2 Choosing the Right Statistical Procedures 1.2.1 Planning

More information

New Developments in Econometrics Lecture 9: Stratified Sampling

New Developments in Econometrics Lecture 9: Stratified Sampling New Developments in Econometrics Lecture 9: Stratified Sampling Jeff Wooldridge Cemmap Lectures, UCL, June 2009 1. Overview of Stratified Sampling 2. Regression Analysis 3. Clustering and Stratification

More information

Answer keys for Assignment 10: Measurement of study variables (The correct answer is underlined in bold text)

Answer keys for Assignment 10: Measurement of study variables (The correct answer is underlined in bold text) Answer keys for Assignment 10: Measurement of study variables (The correct answer is underlined in bold text) 1. A quick and easy indicator of dispersion is a. Arithmetic mean b. Variance c. Standard deviation

More information

Research Methods in Environmental Science

Research Methods in Environmental Science Research Methods in Environmental Science Module 5: Research Methods in the Physical Sciences Research Methods in the Physical Sciences Obviously, the exact techniques and methods you will use will vary

More information

REVISED GCSE Scheme of Work Mathematics Higher Unit 4. For First Teaching September 2010 For First Examination Summer 2011

REVISED GCSE Scheme of Work Mathematics Higher Unit 4. For First Teaching September 2010 For First Examination Summer 2011 REVISED GCSE Scheme of Work Mathematics Higher Unit 4 For First Teaching September 2010 For First Examination Summer 2011 Version 1: 28 April 10 Version 1: 28 April 10 Unit T4 Version 1: 28 April 10 Unit

More information

Quadrats Online: Teacher Notes

Quadrats Online: Teacher Notes Quadrats Online: Teacher Notes Elspeth Swan Overview Background notes: Develop skills in sampling vegetation using quadrats. Recognise and select various types of quadrat sampling. Target audience Levels

More information

ANGLO-CHINESE JUNIOR COLLEGE MATHEMATICS DEPARTMENT. Paper 1 18 August 2016 JC 2 PRELIMINARY EXAMINATION Time allowed: 3 hours

ANGLO-CHINESE JUNIOR COLLEGE MATHEMATICS DEPARTMENT. Paper 1 18 August 2016 JC 2 PRELIMINARY EXAMINATION Time allowed: 3 hours ANGLO-CHINESE JUNIOR COLLEGE MATHEMATICS DEPARTMENT MATHEMATICS Higher 1 8864 / 01 Paper 1 18 August 016 JC PRELIMINARY EXAMINATION Time allowed: 3 hours Additional Materials: List of Formulae (MF15) READ

More information

Data Collection: What Is Sampling?

Data Collection: What Is Sampling? Project Planner Data Collection: What Is Sampling? Title: Data Collection: What Is Sampling? Originally Published: 2017 Publishing Company: SAGE Publications, Inc. City: London, United Kingdom ISBN: 9781526408563

More information

Sampling Populations limited in the scope enumerate

Sampling Populations limited in the scope enumerate Sampling Populations Typically, when we collect data, we are somewhat limited in the scope of what information we can reasonably collect Ideally, we would enumerate each and every member of a population

More information

Monitoring Design: Study Area,

Monitoring Design: Study Area, Monitoring Design: Study Area, Reporting Units, Stratification Owyhee Canyonlands - Photo: Scott Carter What do you mean by monitoring design? Loosely defined term that encompasses technical aspects of

More information

Sampling and Estimation in Agricultural Surveys

Sampling and Estimation in Agricultural Surveys GS Training and Outreach Workshop on Agricultural Surveys Training Seminar: Sampling and Estimation in Cristiano Ferraz 24 October 2016 Download a free copy of the Handbook at: http://gsars.org/wp-content/uploads/2016/02/msf-010216-web.pdf

More information

UNIT-3 Sampling Design

UNIT-3 Sampling Design UNIT-3 Sampling Design Census and Sample Survey All items in any field of inquiry constitute a Universe or Population. A complete enumeration of all items in the population is known as a census inquiry.

More information

A comparison of weighted estimators for the population mean. Ye Yang Weighting in surveys group

A comparison of weighted estimators for the population mean. Ye Yang Weighting in surveys group A comparison of weighted estimators for the population mean Ye Yang Weighting in surveys group Motivation Survey sample in which auxiliary variables are known for the population and an outcome variable

More information

Stat472/572 Sampling: Theory and Practice Instructor: Yan Lu

Stat472/572 Sampling: Theory and Practice Instructor: Yan Lu Stat472/572 Sampling: Theory and Practice Instructor: Yan Lu 1 Chapter 5 Cluster Sampling with Equal Probability Example: Sampling students in high school. Take a random sample of n classes (The classes

More information

Approach to Field Research Data Generation and Field Logistics Part 1. Road Map 8/26/2016

Approach to Field Research Data Generation and Field Logistics Part 1. Road Map 8/26/2016 Approach to Field Research Data Generation and Field Logistics Part 1 Lecture 3 AEC 460 Road Map How we do ecology Part 1 Recap Types of data Sampling abundance and density methods Part 2 Sampling design

More information

Chapter 6 ESTIMATION OF PARAMETERS

Chapter 6 ESTIMATION OF PARAMETERS Chapter 6 ESTIMATION OF PARAMETERS Recall that one of the objectives of statistics is to make inferences concerning a population. And these inferences are based only in partial information regarding the

More information

UNIT I METHODS OF SAMPLING

UNIT I METHODS OF SAMPLING UNIT I METHODS OF SAMPLING Structure Introduction Objectives Concept of Population and Sample Methods of Sampling 1.3.1 Probability Sampling 1.3.2 Non-probability Sampling 1.3.3 Choice of the Sampling

More information

Training and Technical Assistance Webinar Series Statistical Analysis for Criminal Justice Research

Training and Technical Assistance Webinar Series Statistical Analysis for Criminal Justice Research Training and Technical Assistance Webinar Series Statistical Analysis for Criminal Justice Research Justice Research and Statistics Association 720 7 th Street, NW, Third Floor Washington, DC 20001 II.

More information

Finite Population Sampling and Inference

Finite Population Sampling and Inference Finite Population Sampling and Inference A Prediction Approach RICHARD VALLIANT ALAN H. DORFMAN RICHARD M. ROYALL A Wiley-Interscience Publication JOHN WILEY & SONS, INC. New York Chichester Weinheim Brisbane

More information

Analysis of Variance and Co-variance. By Manza Ramesh

Analysis of Variance and Co-variance. By Manza Ramesh Analysis of Variance and Co-variance By Manza Ramesh Contents Analysis of Variance (ANOVA) What is ANOVA? The Basic Principle of ANOVA ANOVA Technique Setting up Analysis of Variance Table Short-cut Method

More information

We would like to describe this population. Central tendency (mean) Variability (standard deviation) ( X X ) 2 N

We would like to describe this population. Central tendency (mean) Variability (standard deviation) ( X X ) 2 N External Validity: Assuming that there is a causal relationship in this study between the constructs of the cause and the effect, can we generalize this effect to other persons, places or times? Population

More information

Design of 2 nd survey in Cambodia WHO workshop on Repeat prevalence surveys in Asia: design and analysis 8-11 Feb 2012 Cambodia

Design of 2 nd survey in Cambodia WHO workshop on Repeat prevalence surveys in Asia: design and analysis 8-11 Feb 2012 Cambodia Design of 2 nd survey in Cambodia WHO workshop on Repeat prevalence surveys in Asia: design and analysis 8-11 Feb 2012 Cambodia Norio Yamada RIT/JATA Primary Objectives 1. To determine the prevalence of

More information

STATISTICS 141 Final Review

STATISTICS 141 Final Review STATISTICS 141 Final Review Bin Zou bzou@ualberta.ca Department of Mathematical & Statistical Sciences University of Alberta Winter 2015 Bin Zou (bzou@ualberta.ca) STAT 141 Final Review Winter 2015 1 /

More information

Study on Method of Mass Communication Research 传播研究方法 (6) Dr. Yi Mou 牟怡

Study on Method of Mass Communication Research 传播研究方法 (6) Dr. Yi Mou 牟怡 1896 1920 1987 2006 Study on Method of Mass Communication Research 传播研究方法 (6) Dr. Yi Mou 牟怡 The Logic of Sampling President Alf Landon Literary Digest poll, 1936 Ten million ballots mailed to people listed

More information

The Use of Random Geographic Cluster Sampling to Survey Pastoralists. Kristen Himelein, World Bank Addis Ababa, Ethiopia January 23, 2013

The Use of Random Geographic Cluster Sampling to Survey Pastoralists. Kristen Himelein, World Bank Addis Ababa, Ethiopia January 23, 2013 The Use of Random Geographic Cluster Sampling to Survey Pastoralists Kristen Himelein, World Bank Addis Ababa, Ethiopia January 23, 2013 Paper This presentation is based on the paper by Kristen Himelein

More information

Topic 3 Populations and Samples

Topic 3 Populations and Samples BioEpi540W Populations and Samples Page 1 of 33 Topic 3 Populations and Samples Topics 1. A Feeling for Populations v Samples 2 2. Target Populations, Sampled Populations, Sampling Frames 5 3. On Making

More information

ISQS 5349 Spring 2013 Final Exam

ISQS 5349 Spring 2013 Final Exam ISQS 5349 Spring 2013 Final Exam Name: General Instructions: Closed books, notes, no electronic devices. Points (out of 200) are in parentheses. Put written answers on separate paper; multiple choices

More information

Day 8: Sampling. Daniel J. Mallinson. School of Public Affairs Penn State Harrisburg PADM-HADM 503

Day 8: Sampling. Daniel J. Mallinson. School of Public Affairs Penn State Harrisburg PADM-HADM 503 Day 8: Sampling Daniel J. Mallinson School of Public Affairs Penn State Harrisburg mallinson@psu.edu PADM-HADM 503 Mallinson Day 8 October 12, 2017 1 / 46 Road map Why Sample? Sampling terminology Probability

More information

A4. Methodology Annex: Sampling Design (2008) Methodology Annex: Sampling design 1

A4. Methodology Annex: Sampling Design (2008) Methodology Annex: Sampling design 1 A4. Methodology Annex: Sampling Design (2008) Methodology Annex: Sampling design 1 Introduction The evaluation strategy for the One Million Initiative is based on a panel survey. In a programme such as

More information

Sampling approaches in animal health studies. Al Ain November 2017

Sampling approaches in animal health studies. Al Ain November 2017 Sampling approaches in animal health studies Al Ain 13-14 November 2017 Definitions Populations and Samples From a statistical point of view: Population is a set of measurements, that may be finite or

More information