Skip to content

create and save a simulated dataset

3 messages · Giovanna Ottaviani, Bert Gunter, Rui Barradas

#
Is this a homework problem? (We don't do homework here).

What is missing from your query is any specification of what you mean
by "random," which, by itself, is meaningless. It also might be the
case that the trees within each stand are correlated in some way --
perhaps they should to be more similar in diameter within a stand than
between.  So I think your first task is to think more carefully about
**what** you want to do and how to specify it precisely and completely
before worrying about  **how** to do it..


Cheers,
Bert

On Sat, Feb 2, 2013 at 12:10 PM, Giovanna Ottaviani
<GIO at skogoglandskap.no> wrote:

  
    
#
Hello,

Once you formulate the problem properly, it's not hard to solve it in R.

Bert's questions should be answered before continuing. I'll make two 
assumptions, not present in your post.
All diameters are assumed independent and to follow the same uniform 
distribution. (iid scenario; the two assumptions you have to decide about.)

With these in mind, you can get some inspiration from the following 
code. It produces 10 vectors of a random numbers of trees of random 
diameters.


min.diam <- 1  # trees' diameters
max.diam <- 2  #
max.trees <- 10  # trees per stand
lapply(1:10, function(i) runif(sample(max.trees, 1), min.diam, max.diam))


Hope this helps,

Rui Barradas

Em 02-02-2013 20:10, Giovanna Ottaviani escreveu: