# 0) DEFAULT EXAMPLE ##########################################################################################
rm(list = ls())
gc()
devtools::load_all()
# Example
data(meuse.grid, package = "sp")
candi <- meuse.grid[, 1:2]
schedule <- scheduleSPSANN(
chains = 1,
initial.acceptance = c(0.8, 0.99),
initial.temperature = 9.5,
x.max = 1540, y.max = 2060, x.min = 0,
y.min = 0, cellsize = 40)
set.seed(2001)
res <- optimPPL(points = 10, candi = candi, schedule = schedule)
objSPSANN(res) # 41
# 1) Point pairs with many chains #############################################################################
rm(list = ls())
gc()
devtools::load_all()
data(meuse.grid, package = "sp")
candi <- meuse.grid[, 1:2]
set.seed(2001, sample.kind = "Round")
res <- optimPPL(
points = 30, candi = candi, pairs = TRUE, plotit = TRUE,
schedule = scheduleSPSANN(initial.temperature = 100, cellsize = 40))
objPPL(res)
countPPL(res)
plot(res)
# 2) Points per lag - select sample points from candi #########################################################
rm(list = ls())
gc()
devtools::load_all()
data(meuse.grid, package = "sp")
candi <- meuse.grid[, 1:2]
# random selection
points <- 100
set.seed(2001, sample.kind = "Round")
res <- countPPL(points = points, candi = candi)
set.seed(2001, sample.kind = "Round")
objPPL(points = points, candi = candi)
sum(points - res$ppl) # 216 (346)
# vector of indexes
points <- 1:100
res <- countPPL(points = points, candi = candi)
objPPL(points = points, candi = candi)
sum(length(points) - res$ppl) # 200 (266)
# 3) ADD TEN POINTS TO EXISTING SPATIAL SAMPLE ################################################################
rm(list = ls())
gc()
devtools::load_all()
data(meuse.grid, package = "sp")
candi <- meuse.grid[, 1:2]
schedule <- scheduleSPSANN(
initial.acceptance = c(0.9, 0.99), chains = 500, stopping = 100, initial.temperature = 120,
x.max = 1540, y.max = 2060, x.min = 0, y.min = 0, cellsize = 40)
free <- 10
set.seed(1984, sample.kind = "Round")
fixed <- candi[sample(1:nrow(candi), 30), ]
set.seed(2001, sample.kind = "Round")
res <- optimPPL(points = list(free = free, fixed = fixed), candi = candi, schedule = schedule, plotit = TRUE)
objSPSANN(res)
objPPL(res, candi = candi)
countPPL(res, candi, x.max = 1540, y.max = 2060)
plot(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.