@@ -121,21 +121,21 @@ reconstruct_pattern_cluster <- function(pattern,
121
121
122
122
# calculate r
123
123
r <- seq(from = 0 ,
124
- to = spatstat.core :: rmax.rule(W = pattern $ window ,
124
+ to = spatstat.explore :: rmax.rule(W = pattern $ window ,
125
125
lambda = spatstat.geom :: intensity.ppp(pattern )),
126
126
length.out = r_length )
127
127
128
128
# start with fitted pattern
129
129
# fit Thomas process
130
- fitted_process <- spatstat.core :: kppm.ppp(pattern , cluster = " Thomas" ,
131
- statistic = " pcf" ,
132
- statargs = list (divisor = " d" ,
133
- correction = " best" ),
134
- improve.type = " none" )
130
+ fitted_process <- spatstat.model :: kppm.ppp(pattern , cluster = " Thomas" ,
131
+ statistic = " pcf" ,
132
+ statargs = list (divisor = " d" ,
133
+ correction = " best" ),
134
+ improve.type = " none" )
135
135
136
136
# simulte clustered pattern
137
- simulated <- spatstat.core :: simulate.kppm(fitted_process , nsim = 1 , drop = TRUE ,
138
- window = pattern $ window , verbose = FALSE )
137
+ simulated <- spatstat.model :: simulate.kppm(fitted_process , nsim = 1 , drop = TRUE ,
138
+ window = pattern $ window , verbose = FALSE )
139
139
140
140
# remove points because more points in simulated
141
141
if (pattern $ n < simulated $ n ) {
@@ -167,9 +167,9 @@ reconstruct_pattern_cluster <- function(pattern,
167
167
# fast computation of summary functions
168
168
if (comp_fast ) {
169
169
170
- gest_observed <- spatstat.core :: Gest(pattern , correction = " none" , r = r )
170
+ gest_observed <- spatstat.explore :: Gest(pattern , correction = " none" , r = r )
171
171
172
- gest_simulated <- spatstat.core :: Gest(simulated , correction = " none" , r = r )
172
+ gest_simulated <- spatstat.explore :: Gest(simulated , correction = " none" , r = r )
173
173
174
174
pcf_observed <- estimate_pcf_fast(pattern , correction = " none" ,
175
175
method = " c" , spar = 0.5 , r = r )
@@ -180,14 +180,14 @@ reconstruct_pattern_cluster <- function(pattern,
180
180
# normal computation of summary functions
181
181
} else {
182
182
183
- gest_observed <- spatstat.core :: Gest(X = pattern , correction = " han" , r = r )
183
+ gest_observed <- spatstat.explore :: Gest(X = pattern , correction = " han" , r = r )
184
184
185
- gest_simulated <- spatstat.core :: Gest(X = simulated , correction = " han" , r = r )
185
+ gest_simulated <- spatstat.explore :: Gest(X = simulated , correction = " han" , r = r )
186
186
187
- pcf_observed <- spatstat.core :: pcf.ppp(X = pattern , correction = " best" ,
187
+ pcf_observed <- spatstat.explore :: pcf.ppp(X = pattern , correction = " best" ,
188
188
divisor = " d" , r = r )
189
189
190
- pcf_simulated <- spatstat.core :: pcf.ppp(X = simulated , correction = " best" ,
190
+ pcf_simulated <- spatstat.explore :: pcf.ppp(X = simulated , correction = " best" ,
191
191
divisor = " d" , r = r )
192
192
193
193
}
@@ -247,16 +247,16 @@ reconstruct_pattern_cluster <- function(pattern,
247
247
# calculate summary functions after relocation
248
248
if (comp_fast ) {
249
249
250
- gest_relocated <- spatstat.core :: Gest(relocated , correction = " none" , r = r )
250
+ gest_relocated <- spatstat.explore :: Gest(relocated , correction = " none" , r = r )
251
251
252
252
pcf_relocated <- estimate_pcf_fast(relocated , correction = " none" ,
253
253
method = " c" , spar = 0.5 , r = r )
254
254
255
255
} else {
256
256
257
- gest_relocated <- spatstat.core :: Gest(X = relocated , correction = " han" , r = r )
257
+ gest_relocated <- spatstat.explore :: Gest(X = relocated , correction = " han" , r = r )
258
258
259
- pcf_relocated <- spatstat.core :: pcf.ppp(X = relocated , correction = " best" ,
259
+ pcf_relocated <- spatstat.explore :: pcf.ppp(X = relocated , correction = " best" ,
260
260
divisor = " d" , r = r )
261
261
262
262
}
0 commit comments