Reset all patches
values to NA
.
clearPatches(world)
# S4 method for worldMatrix
clearPatches(world)
# S4 method for worldArray
clearPatches(world)
WorldMatrix
or worldArray
object.
WorldMatrix
object with NA
values for all patches
.
Wilensky, U. 1999. NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern University. Evanston, IL.
w1 <- createWorld()
w1 <- NLset(world = w1, agents = patches(w1), val = runif(NLcount(patches(w1))))
w1Val <- of(world = w1, agents = patches(w1))
summary(w1Val)
#> Min. 1st Qu. Median Mean 3rd Qu. Max.
#> 0.0003531 0.2596055 0.5186358 0.5071382 0.7572664 0.9996729
w1 <- clearPatches(w1)
w1Val <- of(world = w1, agents = patches(w1))
summary(w1Val)
#> Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
#> NA NA NA NaN NA NA 1089