how to use excel to do random sampling

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a data set of 30 numbers. I need to use excel to draw 50 random
samples of size 5 and then compute the mean for each sample. How do I do
this?
 
if your sample is between a1:a30 and your sample between 0 & 1.
in B1 type =Rand(a1) and copy and paste the formula to B30. if your numbers
are larger than 1 then use =Rand(a1)*100. Rand() gives you random sample.

Nikki
 
With, or without, replacement? And do you insist on using Microsoft's poor
prng, or be willing to settle for a much better one? (I'm thinking along the
lines of PopTools, a free add-in).

Finally, if you are looking for the distribution of the means, why not just
calculate it directly instead of using simulation? Your population size is
tiny; or are you just throwing out some numbers (5 of 30, 50 samples) for
the sake of concreteness?

DaveB
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Sampling 1
How do I make a random sample? 4
How to sort al list in random order for sampling? 1
Random Sampling 7
Select a random sample 2
Random Sampling 5
Data Analysis - Random Sampling 1
random sampling 5

Back
Top