Exam 1 Answers number/m

Size: px
Start display at page:

Download "Exam 1 Answers number/m"

Transcription

1 Exam 1 Answers (15 pts) a) Construct a two-sided 95% confidence interval for the mean abundance of pipevine swallowtail butterflies (Battus philenor) per m 2 of foliage of their host plant Aristolochia californica. The measured values are given below and are the result of random sampling. Note your assumptions. observation # number/m Confidence interval on the mean abundance: Assumes underlying population is normally distributed P [ x ( tα 2, n 1 )( s n) µ x + ( tα 2, n 1 )( s n)] = 1 α Calculations in R # enter data abund=c(17,52,48,22,31,41,53,19) # calculate mean, sd, and sample size mabund=mean(abund) mabund [1] sdabund=sd(abund) sdabund [1] n=length(abund) n [1] 8

2 # determine critical t for n-1 df's critt=qt(0.975,n-1) # calculate upper confidence interval limit ciup=mabund+(critt*(sdabund/sqrt(n))) ciup [1] #calculate lower confidence interval limit cilow=mabund-(critt*(sdabund/sqrt(n))) cilow [1] The estimated 95% confidence interval on mean abundance of the pipevine swallowtail on foliage of the host plant is: P ( µ 47.94) = (10pts) What four factors affect the power of a statistical hypothesis test? Which of these factors are most appropriate to attempt to change in order to achieve a more powerful test? Answer The power of a statistical test depends on the Type I error rate, α, the inherent observational variability, σ, the magnitude of the difference between treatments that one wants to detect, the effect size or δ, and on the sample size n. It is most appropriate to increase sample size, or to alter the design of the experiment in order to reduce σ to improve the power of a test. 3. (20 pts) A geologist was interested in the effectiveness of a hydrologic restoration on soil moisture, and ultimately the biota of a montane meadow. Before restoration the meadow appeared to have a shortened hydroperiod - moisture was not retained in the meadow late into the growing season, due to the presence of a severely head cut stream. Runoff from snowmelt exited the meadow quickly via a deep stream channel that developed due to erosion caused by logging. The restoration involved excavating ten ponds along the stream and using the soil from these excavations to create a series of dikes to plug a deeply incised steam channel. Spillways were constructed at each pond so that excess water would flow onto the meadow and presumably increase soil moisture and enhance plant growth rather than flow rapidly downstream. The geologist reasoned that any increase in soil moisture would be detected initially just downstream from of the spillways at each pond. Therefore, she removed soil cores from both the upstream and downstream sides of three of the spillways and estimated the percent moisture content by measuring the initial mass of the core, drying the core at 60 o C for 48 hrs and then reweighing the

3 core. Percent moisture content was then calculated as [(initial mass-final mass)/initial mass]. Use these data to determine the sample size necessary to detect a 25% increase in soil moisture downstream from the spillways. Would such a full study be feasible? Spillway Upstream Downstream % 15.1% % 15.5% % 16.4% # this is a paired t-test like design # enter data up=c(11.9,10.3,11.4) down=c(15.1,15.5,16.4) # calculate mean soil moisture up mup=mean(up) mup [1] 11.2 # calculate the standard deviation of the differences in soil mositure above and below the spillways diff=up-down diff [1] sddiff=sd(diff) sddiff [1] # conjecture effect size effect=0.25*mup effect [1] 2.8

4 # calculate sample size required power.t.test(delta=effect, sd=sddiff, sig.level=0.05, power=0.8, type="paired", alternative="one.sided") Paired t test power calculation n = delta = 2.8 sd = sig.level = 0.05 power = 0.8 alternative = one.sided NOTE: n is number of *pairs*, sd is std.dev. of *differences* within pairs # calculate sample size with power = 0.95 Paired t test power calculation n = delta = 2.8 sd = sig.level = 0.05 power = 0.95 alternative = one.sided NOTE: n is number of *pairs*, sd is std.dev. of *differences* within pairs 1. Calculate the standard deviation of the differences in soil moisture above and below each spillway. (sd of differences = Calculate the effect size. Given that the preliminary data indicate that percent soil moisture above the spillways is 11.2%, a 25% increase would be to 14%, for a difference between the observed and conjecture effect means of Using power.t.test with (delta=2.8, paired=true, sig.level=0.05, Power = 0.8, and sd= , I calculate the necessary sample size to be Given that there are only 10 ponds in the meadow, the fact that only 3 are needed to have adequate power suggests that such a study is feasible. Even with power = 0.95, the sample size necessary to detect a 25% increase in soil moisture is only (15 pts) A geographer studying hammock islands (small patches of tropical hardwood forest) in the Florida Everglades was interested in determining the effect of invasion by the shrub Brazilian Pepper (Schinus sp.) on the species richness of native plants in hammocks. She sampled 13 un-invaded and 9 invaded hammock islands and determined that the average species richness (mean±standard error) was 28.2±3.32 and 18.7±4.55 on un-invaded and invaded islands, respectively.

5 Would she be safe in concluding that the invaded islands have lower species richness than un-invaded islands? Perform a statistical test and report the results of that test to support your interpretation of the data. Answer: This problem calls for applying a test that is based on having two independent treatment groups. If I had given you the data it would have been possible to apply the Wilcoxon Rank- Sum test. However, since I only gave you the treatment means and standard errors, the only option was to apply the independent groups t-test. In this instance you could have assumed that variances were equal, or assumed they were unequal. Either could have been argued. H o : μ d 0 H a : μ d > 0 # input values n1=13 n2=9 x1=28.2 x2=18.7 se1=3.32 se2=4.55 #calculate sd's and vars from se's sd1=se1*sqrt(n1) sd1 [1] sd2=se2*sqrt(n2) sd2 [1] var1=sd1^2 var2=sd2^2 # perform t-test assuming equal variances # calculate pooled estimate of sd sp=sqrt((((n1-1)*(var1))+((n2-1)*(var2)))/((n1+n2)-2)) sp [1]

6 # calculate t value tev=(x1-x2)/(sp*sqrt((1/n1)+(1/n2))) tev [1] # calculate dfs dfev=(n1+n2)-2 siglevel=1-pt(tev,dfev) siglevel [1] When assuming equal variances, given a t-value of with 20 dfs and p= reject null hypothesis. # perform t-test assuming unequal variances t=(x1-x2)/sqrt(((sd1^2)/n1)+((sd2^2)/n2)) t [1] # calculate df's var1=sd1^2 var2=sd2^2 df=(((var1/n1)+(var2/n2))^2)/((((var1/n1)^2)/n1+1)+(((var2/n2)^2)/n2+1))-2 df [1] # determine significance level of test 1-pt(t,df) [1] When assuming unequal variances, t = with dfs = and p= Therefore do not reject the null hypothesis. So in this instance the assumption one makes concerning the variances determine whether or not the null hypothesis is rejected. 5. (10 pts) Design an experiment to determine the impact of introduced Argentine ants on soil insects and arthropods. State your null and alternative hypothesis explicitly, and explain what preliminary data you would collect to help you decide how to design your experiment.

7 Answer: I would place pit fall traps in areas invaded by Argentine ants and in nearby areas not invaded by Argentine ants. These traps could be used to estimate the abundance of soil arthropods and insects. I would probably view traps in adjacent invaded/un-invaded areas as samples of the same subject (site), so multiple sites (subjects) would be used to test the null hypothesis that Argentine Ants have no effect on the abundance of soil arthropods and insects versus the alternative that they reduce the abundance of soil arthropods and insects. This experiment would be a within subjects design. I would need preliminary data on the average abundance of soil arthropods and insects in the invaded areas, and preliminary data on variability in the difference between invaded and un-invaded areas to perform a sample size analysis. 6. (20 pts) The following data represent the abundance of seeds of a native species of thistle in the seed bank on serpentine soils and on adjacent non-serpentine soils. Test the hypotheses that thistle abundance is unrelated to soil type. Analyze this data assuming both that they are either markedly non-normal or are normally distributed. Abundance (seeds/ cm 3 ) Site Serpentine Non-Serpentine Soil Soil To examine these data assuming normality apply the paired t-test on the data. Note that the serpentine and non-serpentine data some for adjacent sites suggestion a paired design.

8 # input data serp=c(16.4,19.8,18.5,17.4,21.2,21.3) serp [1] nonserp=c(9.6,0.6,4.8,3.5,2.5,8.2) nonserp [1] # assume normality t.test(serp,nonserp,paired=true,alternative="two.sided") Paired t-test data: serp and nonserp t = , df = 5, p-value = alternative hypothesis: true difference in means is not equal to 0 95 percent confidence interval: sample estimates: mean of the differences To examine these data assuming non-normality apply the Wilcoxon signed-rank test of these data. Note that the serpentine and non-serpentine data some for adjacent sites suggestion a paired design. # assume non-normality wilcox.test(serp,nonserp,paired=true) Wilcoxon signed rank test data: serp and nonserp V = 21, p-value = alternative hypothesis: true location shift is not equal to 0

9 7. (10pts) The graphs depicted below illustrate instances where hypothesis tests for differences in means were not significant and the α = 0.05 level. Do either of these plots suggest that a Type II error is likely to have been made? A. B Density Control Treatment Control Treatment Answer: The pattern of the means and standard errors in Plot B suggest that it is possible that the failure to reject the null hypothesis is likely to be due to a Type II error. This is because there are substantial differences in the treatment means, but the standard errors are so large that this difference could not be detected statistically. In Plot A the means are so similar that repeating the experiment with larger sample sizes is not likely to lead to finding the treatment means are different, since the sample mean is an unbiased estimate of the population mean. Extra Credit 8. (10 pts) What are the assumptions of an independent groups t-test? a paired t- test? What are the consequences of violating these assumptions (e.g., how will it affect the Type I and Type II error rates)? Answer: A. Assumption of the independent groups t-test 1. independent random sampling 2. normality of the underlying population distributions 3. variances equal among the treatment groups B. Assumption of the paired t-test 1. Independent random sampling 2. normality of the distribution of differences Independence - The assumption of independence can never be violated. If the data are not obtained by independent random sampling then the statistics estimated from the

10 data are likely to be biased estimates. All conclusions drawn from such data are unreliable. Normality and Equality of Variances Both tests are fairly robust with respect to violation of the assumption of normality when both variances and sample sizes are equal. However, in the presence of variance heterogeneity and inequality of sample sizes the Independent groups t-test may result in too few or too many Type I errors depending on whether or not the treatment with the largest variance also received the largest sample size. In the paired t-test, since there is only one variance and one sample of differences, the test is always robust with respect to violation of the assumption of normality. For the Independent groups t-test, one can also relax the assumption of equal variances and perform the test with separate variance estimates and for degrees of freedom adjusted using Satterthwaite s or Welch s correction. In the independent groups t-test, power is reduced when variances are unequal unless a larger sample size is allocated to the group with the largest variance. 9. (20 pts) The following data represent the maximum distances that birds and monkeys in rain forests in Cameroon dispersed the seeds of several species of trees. A. Construct a 95 % confidence interval on the underlying population mean of the maximum dispersal distances. B. Tests the hypothesis that the maximum dispersal distance for bird dispersed tree species equals that for monkey dispersed tree species. State the assumptions of the test you apply. Bird Monkey Species 1 Species 2 Species 3 Species 4 Species 5 Species m 210 m 300 m 124 m 90 m 200 m First place 95% confidence intervals on either the overall mean maximum dispersal distance, or the means for birds or monkeys separately. # input data bird=c(473,210,300) bird [1] monkey=c(124,90,200) monkey [1]

11 # combined data to get overall values combined=c(bird,monkey) combined [1] # calculate overall mean maximum dispersal distance mcomb=mean(combined) mcomb [1] # calculate sd of overall maximum dispersal distance sdcomb=sd(combined) sdcomb [1] # get combined sample size ncomb=length(combined) ncomb [1] 6 # calculate confidence interval limits for overall data cc=qt(0.975,ncomb-1) clow=mcomb-cc*(sdcomb/sqrt(ncomb)) clow [1] chigh=mcomb+cc*(sdcomb/sqrt(ncomb)) chigh [1] # calculate confidence limits for bird or monkeys alone mbird=mean(bird) mbird [1] nbird=length(bird) mmonkey=mean(monkey) mmonkey [1] 138 nmonkey=length(monkey)

12 sdbird=sd(bird) sdmonkey=sd(monkey) calone=qt(0.975,nbird-1) # for birds birdlow=mbird-calone*(sdbird/sqrt(nbird)) birdlow [1] birdhigh=mbird+calone*(sdbird/sqrt(nbird)) birdhigh [1] # for monkeys monkeylow=mmonkey-calone*(sdmonkey/sqrt(nmonkey)) monkeylow [1] monkeyhigh=mmonkey+calone*(sdmonkey/sqrt(nmonkey)) monkeyhigh [1] Confidence interval for overall mean maximum dispersal distance P[87.37 μ ] = 0.95 Confidence interval for the mean maximum dispersal distance for birds. Note covert impossible vales (a dispersal distance of to 0). P[0 μ ] = 0.95 Confidence interval for the mean maximum dispersal distance for monkeys. Note covert impossible vales (a dispersal distance of to 0). P[0 μ ] = 0.95 #test hypothesis of no difference in maximum dispersal distance between birds and monkeys

13 # check normality assumption library(quantpsyc) Loading required package: boot Loading required package: MASS Attaching package: 'QuantPsyc' The following object is masked from 'package:base': norm norm(combined) Statistic SE t-val p Skewness Kurtosis # perform 2 sample t-test with unequal variances t.test(bird,monkey) Welch Two Sample t-test data: bird and monkey t = , df = , p-value = alternative hypothesis: true difference in means is not equal to 0 95 percent confidence interval: sample estimates: mean of x mean of y Given a t =2.2649, df=2.6885, and p=0.1187, we fail to reject the null hypothesis of no differences between birds and monkeys in their mean maximum dispersal distances for fruits.

CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test

CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test CHAPTER 8 T Tests A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test 8.1. One-Sample T Test The One-Sample T Test procedure: Tests

More information

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT STAT 512 EXAM I STAT 512 Name (7 pts) Problem Points Score 1 40 2 25 3 28 USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT WRITE LEGIBLY. ANYTHING UNREADABLE WILL NOT BE GRADED GOOD LUCK!!!!

More information

Estimation and Confidence Intervals

Estimation and Confidence Intervals Estimation Estimation a statistical procedure in which a sample statistic is used to estimate the value of an unknown population parameter. Two types of estimation are: Point estimation Interval estimation

More information

Estimation and Confidence Intervals

Estimation and Confidence Intervals Estimation Estimation a statistical procedure in which a sample statistic is used to estimate the value of an unknown population parameter. Two types of estimation are: Point estimation Interval estimation

More information

Estimation and Confidence Intervals

Estimation and Confidence Intervals Estimation Estimation a statistical procedure in which a sample statistic is used to estimate the value of an unknown population parameter. Two types of estimation are: Point estimation Interval estimation

More information

Project 2 - β-endorphin Levels as a Response to Stress: Statistical Power

Project 2 - β-endorphin Levels as a Response to Stress: Statistical Power Score: Name: Due Wednesday, April 10th in class. β-endorphins are neurotransmitters whose activity has been linked to the reduction of pain in the body. Elite runners often report a runners high during

More information

Discussion Solution Mollusks and Litter Decomposition

Discussion Solution Mollusks and Litter Decomposition Discussion Solution Mollusks and Litter Decomposition. Is the rate of litter decomposition affected by the presence of mollusks? 2. Does the effect of mollusks on litter decomposition differ among the

More information

Supplemental Verification Methodology

Supplemental Verification Methodology Supplemental Verification Methodology To: ALL FOREST PROJECT VERIFIERS Date: July 03, 2012 Re: Updated Guidance for Verification of sampled pools for Forest Projects Version 3.3 of the Forest Project Protocol

More information

David M. Rocke Division of Biostatistics and Department of Biomedical Engineering University of California, Davis

David M. Rocke Division of Biostatistics and Department of Biomedical Engineering University of California, Davis David M. Rocke Division of Biostatistics and Department of Biomedical Engineering University of California, Davis Outline RNA-Seq for differential expression analysis Statistical methods for RNA-Seq: Structure

More information

3) Confidence interval is an interval estimate of the population mean (µ)

3) Confidence interval is an interval estimate of the population mean (µ) Test 3 Review Math 1342 1) A point estimate of the population mean (µ) is a sample mean. For given set of data, x sample mean = 67.7 Thus, point estimate of population mean ( ) is 67.7 2) A point estimate

More information

Hydrologic response to conifer removal and upslope harvest in a montane meadow

Hydrologic response to conifer removal and upslope harvest in a montane meadow Hydrologic response to conifer removal and upslope harvest in a montane meadow Dr. Chris Surfleet, PhD, Associate Professor Watershed Management and Hydrology, csurflee@calpoly.edu Graduate Research Assistant,

More information

The Hole-in Restoration Project

The Hole-in Restoration Project The Hole-in in-the-donut Wetland Restoration Project Craig S. Smith 1, Lauren Serra 1,2, Yuncong Li 3, Patrick Inglett 2, Kanika Inglett 2, and K. Ramesh Reddy 2 1, Everglades National Park 2 Soil & Water

More information

Thin Nitride Measurement Example

Thin Nitride Measurement Example Thin Nitride Measurement Example GOAL: Get the most information from your data and analyze it properly to make the right decisions! Look at the data in multiple ways to understand your process better.

More information

Management Science Letters

Management Science Letters Management Science Letters 3 (013) 81 90 Contents lists available at GrowingScience Management Science Letters homepage: www.growingscience.com/msl Investigating the relationship between auditor s opinion

More information

Using Excel s Analysis ToolPak Add-In

Using Excel s Analysis ToolPak Add-In Using Excel s Analysis ToolPak Add-In Bijay Lal Pradhan, PhD Introduction I have a strong opinions that we can perform different quantitative analysis, including statistical analysis, in Excel. It is powerful,

More information

energy usage summary (both house designs) Friday, June 15, :51:26 PM 1

energy usage summary (both house designs) Friday, June 15, :51:26 PM 1 energy usage summary (both house designs) Friday, June 15, 18 02:51:26 PM 1 The UNIVARIATE Procedure type = Basic Statistical Measures Location Variability Mean 13.87143 Std Deviation 2.36364 Median 13.70000

More information

13-5 The Kruskal-Wallis Test

13-5 The Kruskal-Wallis Test 13-5 The Kruskal-Wallis Test luman, hapter 13 1 1 13-5 The Kruskal-Wallis Test The NOV uses the F test to compare the means of three or more populations. The assumptions for the NOV test are that the populations

More information

Chapter Analytical Tool and Setting Parameters: determining the existence of differences among several population means

Chapter Analytical Tool and Setting Parameters: determining the existence of differences among several population means Chapter-6 Websites Services Quality Analysis of Data & Results 6.1 Analytical Tool and Setting Parameters: 1. Analysis of Variance (ANOVA): I have shown a relative scenario between his results in the results

More information

EECS730: Introduction to Bioinformatics

EECS730: Introduction to Bioinformatics EECS730: Introduction to Bioinformatics Lecture 14: Microarray Some slides were adapted from Dr. Luke Huan (University of Kansas), Dr. Shaojie Zhang (University of Central Florida), and Dr. Dong Xu and

More information

Test lasts for 120 minutes. You must stay for the entire 120 minute period.

Test lasts for 120 minutes. You must stay for the entire 120 minute period. ECO220 Mid-Term Test (June 29, 2005) Page 1 of 15 Last Name: First Name: Student ID #: INSTRUCTIONS: DO NOT OPEN THIS EAM UNTIL INSTRUCTED TO. Test lasts for 120 minutes. You must stay for the entire 120

More information

Biostatistics for Public Health Practice

Biostatistics for Public Health Practice Biostatistics for Public Health Practice Week 03 3 Concepts of Statistical Inference Associate Professor Theo Niyonsenga HLTH 5187: Biostatistics for MPHP 1 Statistical Inference Statistics Survey Sampling

More information

ISO 13528:2015 Statistical methods for use in proficiency testing by interlaboratory comparison

ISO 13528:2015 Statistical methods for use in proficiency testing by interlaboratory comparison ISO 13528:2015 Statistical methods for use in proficiency testing by interlaboratory comparison ema training workshop August 8-9, 2016 Mexico City Class Schedule Monday, 8 August Types of PT of interest

More information

SECTION 11 ACUTE TOXICITY DATA ANALYSIS

SECTION 11 ACUTE TOXICITY DATA ANALYSIS SECTION 11 ACUTE TOXICITY DATA ANALYSIS 11.1 INTRODUCTION 11.1.1 The objective of acute toxicity tests with effluents and receiving waters is to identify discharges of toxic effluents in acutely toxic

More information

Sample Size Analysis for Soil Moisture and Plant Species richness in Bear Trap Meadows (Plumas National Forest, California), July 2004

Sample Size Analysis for Soil Moisture and Plant Species richness in Bear Trap Meadows (Plumas National Forest, California), July 2004 Sample Size Analysis for Soil Moisture and Plant Species richness in Bear Trap Meadows (Plumas National Forest, California), July 2004 Lia Walker, Stephen Ingalls, Miao Ling He, Deborah Meckler, Stefanie

More information

Suggested Statistical Methods to Analyze Air Power Operations Course Surveys

Suggested Statistical Methods to Analyze Air Power Operations Course Surveys 2017-10-04 DRDC-RDDC-2017-L316 Prepared for: CO CFAWC Scientific Letter Suggested Statistical Methods to Analyze Air Power Operations Course Surveys Background The RCAF has conducted two serials of the

More information

South Florida Ecology

South Florida Ecology PERFORMANCE EXCELLENCE Placemaking & Historic Preservation Conservation & Awareness Resource Based Recreation & Wellness Sustainability & Community Engagement Identify the layers of a hardwood hammock.

More information

EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES MICHAEL MCCANTS

EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES MICHAEL MCCANTS EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES by MICHAEL MCCANTS B.A., WINONA STATE UNIVERSITY, 2007 B.S., WINONA STATE UNIVERSITY, 2008 A THESIS submitted in partial

More information

Midterm Exam. Friday the 29th of October, 2010

Midterm Exam. Friday the 29th of October, 2010 Midterm Exam Friday the 29th of October, 2010 Name: General Comments: This exam is closed book. However, you may use two pages, front and back, of notes and formulas. Write your answers on the exam sheets.

More information

BIOL 410 Population and Community Ecology. Island biogeography

BIOL 410 Population and Community Ecology. Island biogeography BIOL 410 Population and Community Ecology Island biogeography Ecological communities Competition, Predation, Mutualism Niche (n-dimensional hypervolume) Potential Fundamental Realized Niche partitioning

More information

A Statistical Analysis of the Mechanical Properties of the Beam 14 in Lines 630 and 650 of Iran National Steel Industrial Group

A Statistical Analysis of the Mechanical Properties of the Beam 14 in Lines 630 and 650 of Iran National Steel Industrial Group Research Note International Journal of ISSI, Vol. 13 (2016), No. 2, pp. 40-45 A Statistical Analysis of the Mechanical Properties of the Beam 14 in Lines 630 and 650 of Iran National Steel Industrial Group

More information

Environmental Monitoring Data Review of a Uranium Ore Processing Facility in Argentina. Bonetto, J.P.

Environmental Monitoring Data Review of a Uranium Ore Processing Facility in Argentina. Bonetto, J.P. Environmental Monitoring Data Review of a Uranium Ore Processing Facility in Argentina Bonetto, J.P. Presentado en: International Symposium on Uranium Raw Materials for the Nuclear Fuel Cycle: Exploration,

More information

Lab 8 Community Ecology: Measuring Plant Species Diversity Please Read and Bring With You to Lab

Lab 8 Community Ecology: Measuring Plant Species Diversity Please Read and Bring With You to Lab LSC 322 Fundamentals of Ecology Lab Lab 8 Community Ecology: Measuring Plant Diversity Please Read and Bring With You to Lab Location: We will meet at the parking area for the north side of Piestewa Peak

More information

Statistics 511 Additional Materials

Statistics 511 Additional Materials Statistics 5 Additional Materials Confidence intervals for difference of means of two independent populations, µ -µ 2 Previously, we focused on a single population and parameters calculated from that population.

More information

Kristin Gustavson * and Ingrid Borren

Kristin Gustavson * and Ingrid Borren Gustavson and Borren BMC Medical Research Methodology 2014, 14:133 RESEARCH ARTICLE Open Access Bias in the study of prediction of change: a Monte Carlo simulation study of the effects of selective attrition

More information

Week 1 Tuesday Hr 2 (Review 1) - Samples and Populations - Descriptive and Inferential Statistics - Normal and T distributions

Week 1 Tuesday Hr 2 (Review 1) - Samples and Populations - Descriptive and Inferential Statistics - Normal and T distributions Week 1 Tuesday Hr 2 (Review 1) - Samples and Populations - Descriptive and Inferential Statistics - Normal and T distributions One of the primary goals of statistics is to make statistical inferences on

More information

SEES 503 SUSTAINABLE WATER RESOURCES. Floods. Instructor. Assist. Prof. Dr. Bertuğ Akıntuğ

SEES 503 SUSTAINABLE WATER RESOURCES. Floods. Instructor. Assist. Prof. Dr. Bertuğ Akıntuğ SEES 503 SUSTAINABLE WATER RESOURCES Floods Instructor Assist. Prof. Dr. Bertuğ Akıntuğ Civil Engineering Program Middle East Technical University Northern Cyprus Campus SEES 503 Sustainable Water Resources

More information

BLOCKING AND FILLING SURFACE DRAINAGE DITCHES

BLOCKING AND FILLING SURFACE DRAINAGE DITCHES MINNESOTA WETLAND RESTORATION GUIDE BLOCKING AND FILLING SURFACE DRAINAGE DITCHES TECHNICAL GUIDANCE DOCUMENT Document No.: WRG 4A-1 Publication Date: 10/14/2015 Table of Contents Introduction Application

More information

APPENDIX E. Exotic Species Control Plans (Including Exotic Pest Plant Council s 1999 List of Florida s Most Invasive Species)

APPENDIX E. Exotic Species Control Plans (Including Exotic Pest Plant Council s 1999 List of Florida s Most Invasive Species) APPENDIX E. Exotic Species Control Plans (Including Exotic Pest Plant Council s 1999 List of Florida s Most Invasive Species) E-1 The Florida Exotic pest Council has developed a list of Florida s Most

More information

Importance of sacred grove in watershed management system

Importance of sacred grove in watershed management system Importance of sacred grove in watershed management system Rajasri Ray, M.D.Subash Chandran and TVRamachandra T.V.Ramachandra Centre for Ecological Sciences, Indian Institute of Science Bangalore gao 560012,

More information

Maple Samara Design and Dispersal. developed a technique of gliding (Alexander, 2002). In order for seeds to glide some

Maple Samara Design and Dispersal. developed a technique of gliding (Alexander, 2002). In order for seeds to glide some Maple Samara Design and Dispersal Introduction: Plants have yet to evolve powered flight, but the seeds of various trees have developed a technique of gliding (Alexander, 2002). In order for seeds to glide

More information

in the Americas and we tested whether this overlap is (a) higher than if the species had migrated

in the Americas and we tested whether this overlap is (a) higher than if the species had migrated Supporting Information To test whether species richness seasonally tracks the environment because individual species do, we measured overlap between migratory species' environmental niches between two

More information

Context of Extreme Alberta Floods

Context of Extreme Alberta Floods Context of Extreme Alberta Floods Introduction Design of water management and stream crossing infrastructure requires determination of hydrotechnical design parameters. These parameters often consist of

More information

CHAPTER 4. Labeling Methods for Identifying Outliers

CHAPTER 4. Labeling Methods for Identifying Outliers CHAPTER 4 Labeling Methods for Identifying Outliers 4.1 Introduction Data mining is the extraction of hidden predictive knowledge s from large databases. Outlier detection is one of the powerful techniques

More information

Field Exam January Labor Economics PLEASE WRITE YOUR ANSWERS FOR EACH PART IN A SEPARATE BOOK.

Field Exam January Labor Economics PLEASE WRITE YOUR ANSWERS FOR EACH PART IN A SEPARATE BOOK. University of California, Berkeley Department of Economics Field Exam January 2017 Labor Economics There are three parts of the exam. Please answer all three parts. You should plan to spend about one hour

More information

CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION

CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION 168 CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION Performance appraisal is the systematic, periodic and impartial rating of an employee s excellence in matters pertaining to

More information

5 CHAPTER: DATA COLLECTION AND ANALYSIS

5 CHAPTER: DATA COLLECTION AND ANALYSIS 5 CHAPTER: DATA COLLECTION AND ANALYSIS 5.1 INTRODUCTION This chapter will have a discussion on the data collection for this study and detail analysis of the collected data from the sample out of target

More information

Sample Size Calculations for the Development of Biosimilar Products Based on Binary Endpoints

Sample Size Calculations for the Development of Biosimilar Products Based on Binary Endpoints Communications for Statistical Applications and Methods 2015, Vol. 22, No. 4, 389 399 DOI: http://dx.doi.org/10.5351/csam.2015.22.4.389 Print ISSN 2287-7843 / Online ISSN 2383-4757 Sample Size Calculations

More information

Supplementary Fig. 1. Design of the sampling scheme used for collecting data at the SAFE Project in

Supplementary Fig. 1. Design of the sampling scheme used for collecting data at the SAFE Project in Supplementary Fig. 1. Design of the sampling scheme used for collecting data at the SAFE Project in Malaysian Borneo. Here, we used data collected from sample blocks in primary forest (Blocks OG1 and OG2)

More information

Analysis of Rainfall Variability in Relation to Crop Production in Maun, Botswana

Analysis of Rainfall Variability in Relation to Crop Production in Maun, Botswana Analysis of Rainfall Variability in Relation to Crop Production in Maun, Botswana Carly Muir College of Liberal Arts and Sciences, University of Florida The purpose of the study was to analyze patterns

More information

Rosary Pea. Abrus precatorius (L.) Fabaceae

Rosary Pea. Abrus precatorius (L.) Fabaceae Rosary Pea Abrus precatorius (L.) Fabaceae Other common names include: crab s eyes Jequiriti precatory pea licorice vine Biology Climbing or trailing woody vine Non-native, native to India Biology Considered

More information

2. Soil carbon monitoring based on repeated measurements

2. Soil carbon monitoring based on repeated measurements 5 2. Soil carbon monitoring based on repeated measurements DESIGNING A SOIL CARBON SURVEY The objective of the nationwide soil carbon inventory is to provide unbiased estimates of the soil carbon stock

More information

THE LEAD PROFILE AND OTHER NON-PARAMETRIC TOOLS TO EVALUATE SURVEY SERIES AS LEADING INDICATORS

THE LEAD PROFILE AND OTHER NON-PARAMETRIC TOOLS TO EVALUATE SURVEY SERIES AS LEADING INDICATORS THE LEAD PROFILE AND OTHER NON-PARAMETRIC TOOLS TO EVALUATE SURVEY SERIES AS LEADING INDICATORS Anirvan Banerji New York 24th CIRET Conference Wellington, New Zealand March 17-20, 1999 Geoffrey H. Moore,

More information

Modeling the evolution of ant foraging strategies with genetic algorithms. Kenneth Letendre CS 365 September 4, 2012

Modeling the evolution of ant foraging strategies with genetic algorithms. Kenneth Letendre CS 365 September 4, 2012 Modeling the evolution of ant foraging strategies with genetic algorithms Kenneth Letendre kletendr@unm.edu CS 365 September 4, 2012 Harvester Ants Genus Pogonomyrmex A model organism for study of central

More information

Some Methods To Be Avoided

Some Methods To Be Avoided Appendix Some Methods To e Avoided In the following sections some statistical methods that should be avoided are described. These methods are not available in DUMPStat. Analysis of Variance - ANOVA Application

More information

Evaluation of an Oak Woodland Restoration at Deer Grove Forest Preserve. Pete Jackson February 7, 2009

Evaluation of an Oak Woodland Restoration at Deer Grove Forest Preserve. Pete Jackson February 7, 2009 Evaluation of an Oak Woodland Restoration at Deer Grove Forest Preserve Pete Jackson February 7, 2009 Savanna Oak Woodland Mesic Ravine Prairie Opening Sedge meadow Marsh Objective: determine whether

More information

Shannon Claeson USDA Forest Service, PNW Research Station, Olympia, WA Olympic Knotweed Working Group Nov 16, 2011

Shannon Claeson USDA Forest Service, PNW Research Station, Olympia, WA Olympic Knotweed Working Group Nov 16, 2011 Shannon Claeson USDA Forest Service, PNW Research Station, Olympia, WA sclaeson@fs.fed.us Olympic Working Group Nov 16, 2011 Perennial Dense monocultures Moist soil, partial sunlight Disturbed sites (rivers,

More information

MONITORING CHANGES IN EXOTIC VEGETATION

MONITORING CHANGES IN EXOTIC VEGETATION MONITORING CHANGES IN EXOTIC VEGETATION Robert D. Sutter Director of Biological Conservation Southeast Regional Office The Nature Conservancy Chapel Hill, NC 27515 Ecological monitoring provides critical

More information

Confidence Interval Estimation

Confidence Interval Estimation Confidence Interval Estimation Prof. dr. Siswanto Agus Wilopo, M.Sc., Sc.D. Department of Biostatistics, Epidemiology and Population Health Faculty of Medicine Universitas Gadjah Mada Biostatistics I:

More information

Biology 2108 Laboratory Exercises: Variation in Natural Systems

Biology 2108 Laboratory Exercises: Variation in Natural Systems Biology 2108 Laboratory Exercises: Variation in Natural Systems Ed Bostick Don Davis Marcus C. Davis Joe Dirnberger Bill Ensign Ben Golden Lynelle Golden Paula Jackson Ron Matson R.C. Paul Pam Rhyne Gail

More information

STAT 350 (Spring 2016) Homework 12 Online 1

STAT 350 (Spring 2016) Homework 12 Online 1 STAT 350 (Spring 2016) Homework 12 Online 1 1. In simple linear regression, both the t and F tests can be used as model utility tests. 2. The sample correlation coefficient is a measure of the strength

More information

Disclaimer This presentation expresses my personal views on this topic and must not be interpreted as the regulatory views or the policy of the FDA

Disclaimer This presentation expresses my personal views on this topic and must not be interpreted as the regulatory views or the policy of the FDA On multiplicity problems related to multiple endpoints of controlled clinical trials Mohammad F. Huque, Ph.D. Div of Biometrics IV, Office of Biostatistics OTS, CDER/FDA JSM, Vancouver, August 2010 Disclaimer

More information

QUESTION 2 What conclusion is most correct about the Experimental Design shown here with the response in the far right column?

QUESTION 2 What conclusion is most correct about the Experimental Design shown here with the response in the far right column? QUESTION 1 When a Belt Poka-Yoke's a defect out of the process entirely then she should track the activity with a robust SPC system on the characteristic of interest in the defect as an early warning system.

More information

Exam 1 from a Past Semester

Exam 1 from a Past Semester Exam from a Past Semester. Provide a brief answer to each of the following questions. a) What do perfect match and mismatch mean in the context of Affymetrix GeneChip technology? Be as specific as possible

More information

Appendix 5: Details of statistical methods in the CRP CHD Genetics Collaboration (CCGC) [posted as supplied by

Appendix 5: Details of statistical methods in the CRP CHD Genetics Collaboration (CCGC) [posted as supplied by Appendix 5: Details of statistical methods in the CRP CHD Genetics Collaboration (CCGC) [posted as supplied by author] Statistical methods: All hypothesis tests were conducted using two-sided P-values

More information

VEGETATION PATTERNS IN A FOREST UNDERSTORY

VEGETATION PATTERNS IN A FOREST UNDERSTORY VEGETATION PATTERNS IN A INTROUTION The first step in understanding any ecological community is to describe the patterns in the community. What associations are there between abundance of each species

More information

HANDBOOK ON STATISTICS IN SEED TESTING

HANDBOOK ON STATISTICS IN SEED TESTING HANDBOOK ON STATISTICS IN SEED TESTING Revised version Dr. Julianna Bányai and Dr. Júlia Barabás 2002 Revised version January Page 1 CONTENT 1. INTRODUCTION... 4 2. POPULATIONS, SAMPLES AND VARIABLES...

More information

4.3 Nonparametric Tests cont...

4.3 Nonparametric Tests cont... Class #14 Wednesday 2 March 2011 What did we cover last time? Hypothesis Testing Types Student s t-test - practical equations Effective degrees of freedom Parametric Tests Chi squared test Kolmogorov-Smirnov

More information

Appendix of Sequential Search with Refinement: Model and Application with Click-stream Data

Appendix of Sequential Search with Refinement: Model and Application with Click-stream Data Appendix of Sequential Search with Refinement: Model and Application with Click-stream Data Yuxin Chen and Song Yao A1. Robustness Tests of An Alternative Information Structure One assumption we have pertaining

More information

Super-marketing. A Data Investigation. A note to teachers:

Super-marketing. A Data Investigation. A note to teachers: Super-marketing A Data Investigation A note to teachers: This is a simple data investigation requiring interpretation of data, completion of stem and leaf plots, generation of box plots and analysis of

More information

NGSSS: SC.912.L.17.5 Population Ecology. Nothing in the world is more dangerous than sincere ignorance and conscientious stupidity. Dr. M.L.

NGSSS: SC.912.L.17.5 Population Ecology. Nothing in the world is more dangerous than sincere ignorance and conscientious stupidity. Dr. M.L. NGSSS: SC.912.L.17.5 Population Ecology BIOLOGY EOC EXAM PREPARATION #1 Populations do not continue to grow to an unlimited size. Their environment, including food and other natural resources, limits their

More information

Lecture 19: One Way ANOVA

Lecture 19: One Way ANOVA Statistics 19_anova.pdf Michael Hallstone, Ph.D. hallston@hawaii.edu Lecture 19: One Way ANOVA Some Common Sense Assumptions for ANOVA: 1. The variable used is appropriate for a mean (interval/ratio level).

More information

Attachment 1. Categorical Summary of BMP Performance Data for Solids (TSS, TDS, and Turbidity) Contained in the International Stormwater BMP Database

Attachment 1. Categorical Summary of BMP Performance Data for Solids (TSS, TDS, and Turbidity) Contained in the International Stormwater BMP Database Attachment 1 Categorical Summary of BMP Performance Data for Solids (TSS, TDS, and Turbidity) Contained in the International Stormwater BMP Database Prepared by Geosyntec Consultants, Inc. Wright Water

More information

Distinguish between different types of numerical data and different data collection processes.

Distinguish between different types of numerical data and different data collection processes. Level: Diploma in Business Learning Outcomes 1.1 1.3 Distinguish between different types of numerical data and different data collection processes. Introduce the course by defining statistics and explaining

More information

Statistics in Risk Assessment

Statistics in Risk Assessment What s about Truth? 100% 80% Effect 60% 40% 20% 0% 0 0.5 1 1.5 2 2.5 3 Log (Dose/concentration) Hans Toni Ratte Institute of Environmental Research (Biology V) Chair of Ecology, Ecotoxicology, Ecochemistry

More information

INVESTIGATION INTO THE NECESSITY OF DISSOLVED ORTHOPHOSPHATE-PHOSPHORUS FIELD FILTRATION

INVESTIGATION INTO THE NECESSITY OF DISSOLVED ORTHOPHOSPHATE-PHOSPHORUS FIELD FILTRATION INVESTIGATION INTO THE NECESSITY OF DISSOLVED ORTHOPHOSPHATE-PHOSPHORUS FIELD FILTRATION Prepared for: Trinity River Authority of Texas 5300 South Collins P.O. Box 60 Arlington, TX 76004 Phone: 817-467-4343

More information

An Exploration of the Relationship between Construction Cost and Duration in Highway Projects

An Exploration of the Relationship between Construction Cost and Duration in Highway Projects University of Colorado, Boulder CU Scholar Civil Engineering Graduate Theses & Dissertations Civil, Environmental, and Architectural Engineering Spring 1-1-2017 An Exploration of the Relationship between

More information

THE RELIABILITY AND ACCURACY OF REMNANT LIFE PREDICTIONS IN HIGH PRESSURE STEAM PLANT

THE RELIABILITY AND ACCURACY OF REMNANT LIFE PREDICTIONS IN HIGH PRESSURE STEAM PLANT THE RELIABILITY AND ACCURACY OF REMNANT LIFE PREDICTIONS IN HIGH PRESSURE STEAM PLANT Ian Chambers Safety and Reliability Division, Mott MacDonald Studies have been carried out to show how failure probabilities

More information

Logan River at Rendezvous Park, Channel and Floodplain Restoration: Crack Willow (Salix fragilis) Issues and Management Strategies

Logan River at Rendezvous Park, Channel and Floodplain Restoration: Crack Willow (Salix fragilis) Issues and Management Strategies Logan River at Rendezvous Park, Channel and Floodplain Restoration: Crack Willow (Salix fragilis) Issues and Management Strategies Prepared May 2, 2017 by Darren Olsen, BIO-WEST, Inc. Issues Crack willow

More information

QTL Mapping, MAS, and Genomic Selection

QTL Mapping, MAS, and Genomic Selection QTL Mapping, MAS, and Genomic Selection Dr. Ben Hayes Department of Primary Industries Victoria, Australia A short-course organized by Animal Breeding & Genetics Department of Animal Science Iowa State

More information

Reviewer Affiliation Reference Comment Response A. McLean

Reviewer Affiliation Reference Comment Response A. McLean Reviewer Affiliation Reference Comment Response A. McLean A. McLean J. Redwine J. Redwine NPS The target for the PM was to... restore NSM v 4.6.2 target envelopes throughout the GE, except in areas where

More information

Everglades Restoration Swamped by Invasives

Everglades Restoration Swamped by Invasives Everglades Restoration Swamped by Invasives Outline Invasives Species Overview Invasives Species in the Everglades The Plan Everglades Restoration (CERP) Invasive Species, Everglades and CERP Closing Thoughts

More information

Day 1: Confidence Intervals, Center and Spread (CLT, Variability of Sample Mean) Day 2: Regression, Regression Inference, Classification

Day 1: Confidence Intervals, Center and Spread (CLT, Variability of Sample Mean) Day 2: Regression, Regression Inference, Classification Data 8, Final Review Review schedule: - Day 1: Confidence Intervals, Center and Spread (CLT, Variability of Sample Mean) Day 2: Regression, Regression Inference, Classification Your friendly reviewers

More information

JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING

JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING INTRODUCTION JMP software provides introductory statistics in a package designed to let students visually explore data in an interactive way with

More information

1-Sample t Confidence Intervals for Means

1-Sample t Confidence Intervals for Means 1-Sample t Confidence Intervals for Means Requirements for complete responses to free response questions that require 1-sample t confidence intervals for means: 1. Identify the population parameter of

More information

Wetland Regulatory Aspects of Plant Community Mapping

Wetland Regulatory Aspects of Plant Community Mapping Wetland Regulatory Aspects of Plant Community Mapping Major Topics: Delineation and Classification Wetland Implications (in-kind) Monitoring of Wetland Sites Delineating Plant Community Types t new concept

More information

Marketing Industriale e Direzione d Impresa Lezione 20 Marketing Plan 2. Ing. Marco Greco Tel

Marketing Industriale e Direzione d Impresa Lezione 20 Marketing Plan 2. Ing. Marco Greco Tel Marketing Industriale e Direzione d Impresa Lezione 20 Marketing Plan 2 Ing. Marco Greco m.greco@unicas.it Tel.0776.299.3641 1.1 The marketing environment Macroenvironment Demographic env. Economic env.

More information

Rainfall Variation based on Forest Type. Matthew Whitley. Cloudbridge Research August-November 2013

Rainfall Variation based on Forest Type. Matthew Whitley. Cloudbridge Research August-November 2013 Rainfall Variation based on Forest Type Matthew Whitley Cloudbridge Research August-November 2013 Introduction Cloudbridge is located in a Tropical Montane Forest, and for that reason has a very wet climate.

More information

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT

More information

Sec Two-Way Analysis of Variance. Bluman, Chapter 12 1

Sec Two-Way Analysis of Variance. Bluman, Chapter 12 1 Sec 12.3 Two-Way Analysis of Variance Bluman, Chapter 12 1 12-3 Two-Way Analysis of Variance In doing a study that involves a twoway analysis of variance, the researcher is able to test the effects of

More information

155S9.4_3 Inferences from Dependent Samples. April 11, Key Concept. Chapter 9 Inferences from Two Samples. Key Concept

155S9.4_3 Inferences from Dependent Samples. April 11, Key Concept. Chapter 9 Inferences from Two Samples. Key Concept MAT 155 Statistical Analysis Dr. Claude Moore Cape Fear Community College Chapter 9 Inferences from Two Samples 9 1 Review and Preview 9 2 Inferences About Two Proportions 9 3 Inferences About Two Means:

More information

Mechanisms of succession and regeneration

Mechanisms of succession and regeneration Mechanisms of succession and regeneration Outline: Mechanisms of succession and vegetation dynamics. Synthetic concepts and simple models of forest dynamics Overview of the modern conceptual framework

More information

QUESTIONSHEET 1. Daisies and common sedge 78 Common sedge only 6 Daisies only 7 Neither daisies or common sedge 9

QUESTIONSHEET 1. Daisies and common sedge 78 Common sedge only 6 Daisies only 7 Neither daisies or common sedge 9 QUESTIONSHEET 1 A student noticed that large numbers of daisies and common sedge grew on a pasture. The student used random quadrats to determine whether the two species of plant tended to grow together

More information

SNPs and Hypothesis Testing

SNPs and Hypothesis Testing Claudia Neuhauser Page 1 6/12/2007 SNPs and Hypothesis Testing Goals 1. Explore a data set on SNPs. 2. Develop a mathematical model for the distribution of SNPs and simulate it. 3. Assess spatial patterns.

More information

Heterogeneity Random and fixed effects

Heterogeneity Random and fixed effects Heterogeneity Random and fixed effects Georgia Salanti University of Ioannina School of Medicine Ioannina Greece gsalanti@cc.uoi.gr georgia.salanti@gmail.com Outline What is heterogeneity? Identifying

More information

PALM PLANET Can we have tropical forests and our palm oil too?

PALM PLANET Can we have tropical forests and our palm oil too? CHAPTER 12 BIODIVERSITY PALM PLANET Can we have tropical forests and our palm oil too? 12 PALM PLANET Can we have tropical forests and our palm oil too? Biodiversity on our planet is our greatest asset.

More information

ANALYSIS OF ARTEMISIA ARBORESCENS L. GROWTH RATE ON CONTAMINATED SUBSTRATES USING A THERMODYNAMIC APPROACH.

ANALYSIS OF ARTEMISIA ARBORESCENS L. GROWTH RATE ON CONTAMINATED SUBSTRATES USING A THERMODYNAMIC APPROACH. ANALYSIS OF ARTEMISIA ARBORESCENS L. GROWTH RATE ON CONTAMINATED SUBSTRATES USING A THERMODYNAMIC APPROACH. Bonomi E. 1, Cella R. 2, Ciccu R. 3, Ligas P. 3, Parodo L. 3 1 CRS4, Sardinia, Italy 2 Consultant,

More information

Introduction to Business Research 3

Introduction to Business Research 3 Synopsis Introduction to Business Research 3 1. Orientation By the time the candidate has completed this module, he or she should understand: what has to be submitted for the viva voce examination; what

More information

SECTION 10: WETLANDS PROTECTION

SECTION 10: WETLANDS PROTECTION SECTION 10: WETLANDS PROTECTION 10-1 INTENT AND PURPOSE A. Intent 1. The City finds that wetlands serve a variety of beneficial functions. Wetlands maintain water quality, reduce flooding and erosion,

More information

Modeling the long-term effect of bio-control on the spread of an invasive tree: melaleuca

Modeling the long-term effect of bio-control on the spread of an invasive tree: melaleuca Modeling the long-term effect of bio-control on the spread of an invasive tree: melaleuca Bo Zhang 1, Don DeAngelis 2, Min Rayamajhi 3 1. University of Miami 2. United States Geological Survey 3. USDA

More information