randomXYcor: Random 'turtles' coordinates

randomXYcorR Documentation

Random turtles coordinates

Description

Report n random xcor and ycor coordinates within the world's extent.

Usage

randomXYcor(world, n)

## S4 method for signature 'worldNLR,numeric'
randomXYcor(world, n)

Arguments

world

WorldMatrix or worldArray object.

n

Integer.

Value

Matrix (ncol = 2, nrow = n) with the first column xcor and the second column ycor.

Author(s)

Sarah Bauduin

Examples

w1 <- createWorld(minPxcor = 0, maxPxcor = 4, minPycor = 0, maxPycor = 4,
                          data = runif(25))
t1 <- createTurtles(n = 10, coords = randomXYcor(world = w1, n = 10))
plot(w1)
points(t1, col = of(agents = t1, var = "color"), pch = 16)



NetLogoR documentation built on Aug. 17, 2022, 9:06 a.m.