Resource assessment exercises: required sample size determination

From AWF-Wiki
(Difference between revisions)
Jump to: navigation, search
Line 38: Line 38:
 
</pre>
 
</pre>
  
{{info|message=What the function <code>ceiling()</code> does|text=The function <code>ceiling()</code> ceiling takes a single numeric argument <code>x</code> and returns a numericvector containing the smallest integers not less than the corresponding elements of <code>x</code> E.g., 4.3 becomes 5. See also <code>round()</code>.}}
+
{{info|message=What the function <code>ceiling()</code> does|text=The function <code>ceiling()</code> ceiling takes a single numeric argument <code>x</code> and returns a numeric vector containing the smallest integers not less than the corresponding elements of <code>x</code> E.g., 4.3 becomes 5. See also <code>round()</code>.}}
 
  
 
  
  
 
We estimate the width of the confidence interval using the new sample size of <math>n=302</math>.
 
We estimate the width of the confidence interval using the new sample size of <math>n=302</math>.
  
 +
<pre>
 +
s.req.n <- sample(trees$dbh, req.n)
 +
sd(s.req.n)/sqrt(req.n) * qt(0.975, req.n - 1) * 2
  
 
## [1] 2.759
 
## [1] 2.759
 +
</pre>
 +
 +
==Related articles==
 +
* Previous article: [[Resource assessment exercises: finite population correction|Finite population correction]]
 +
* Next article: [[Resource assessment exercises: estimating a proportion|Estimating a proportion]]
  
 
[[category:Resource assessment basics in R (2014)|Required sample size determination]]
 
[[category:Resource assessment basics in R (2014)|Required sample size determination]]

Revision as of 11:32, 23 June 2014

Construction.png sorry: 

This section is still under construction! This article was last modified on 06/23/2014. If you have comments please use the Discussion page or contribute to the article!

Previously we took a sample S of size \(n=50\).

S

##  [1] 22  8 18 43 21 44 17 25 32 10 11 17  9 10 56 14 14 10 20  8 37 14 55 29 33
## [26] 17 10 15 29  8 21  9  9 24 21 28 19 58 16 16 15 20  5  9 14 30 11  9 12 27

The width of the confidence interval was,

sd(S)/sqrt(n) * qt(0.975, n - 1) * 2

## [1] 7.364

Suppose a confidence interval of \(A=3\) cm is desired. How large should the sample size, \(n\), be? This can be estimated,


$A=t_{\alpha,n-1}\frac{s}{\sqrt{n} }\rightarrow n=\frac{t_{\alpha, n-1}^2s^2}{A^2}$ 1


We will use the sample S (\(n=50\)) to estimate how many observations we need in our sample. In R:

half.A <- 1.5
req.n <- (qt(0.975, n - 1)^2 * var(S))/half.A^2
req.n

## [1] 301.2

We always need to round up!

req.n <- ceiling(req.n)


info.png What the function ceiling() does
The function ceiling() ceiling takes a single numeric argument x and returns a numeric vector containing the smallest integers not less than the corresponding elements of x E.g., 4.3 becomes 5. See also round().

  

We estimate the width of the confidence interval using the new sample size of \(n=302\).

s.req.n <- sample(trees$dbh, req.n)
sd(s.req.n)/sqrt(req.n) * qt(0.975, req.n - 1) * 2

## [1] 2.759

Related articles

Personal tools
Namespaces

Variants
Actions
Navigation
Development
Toolbox
Print/export