Skip to content

Commit b3fedd0

Browse files
authored
Merge pull request #122 from r-spatialecology/main
Update
2 parents e7c40a0 + 676f5a3 commit b3fedd0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+899
-2737
lines changed

.github/workflows/Render-README.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
git config --local user.email "[email protected]"
3939
git add README.md man/figures/README-*
4040
git commit -m "Re-build README.md" || echo "No changes to commit"
41-
git push origin || echo "No changes to commit"
41+
git push -f origin || echo "No changes to commit"

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: shar
33
Title: Species-Habitat Associations
4-
Version: 2.0.4
4+
Version: 2.1
55
Authors@R: c(person("Maximilian H.K.", "Hesselbarth", email = "[email protected]",
66
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-1125-9918")),
77
person("Marco", "Sciaini", email = "[email protected]",
@@ -30,8 +30,8 @@ Imports:
3030
grDevices,
3131
methods,
3232
spatstat.explore,
33-
spatstat.model,
3433
spatstat.geom,
34+
spatstat.model,
3535
spatstat.random,
3636
stats,
3737
terra,

NAMESPACE

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ S3method(print,rd_pat)
88
S3method(print,rd_ras)
99
export(calculate_energy)
1010
export(classify_habitats)
11-
export(estimate_pcf_fast)
1211
export(fit_point_process)
1312
export(list_to_randomized)
1413
export(pack_randomized)

NEWS.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# shar 2.1
2+
* Improvements
3+
* Remove `comp_fast` argument
4+
* Speed improvements of computation
5+
* General updates to code structure
6+
* Bugfixes
7+
* Removed `n_points` and `window` argument from reconstruction due to methodological issues
8+
* Bugfix related to wrap/unwrap raster and printing
9+
110
# shar 2.0.4
211
* Improvements
312
* Remove `Sys.sleep` for verbose reconstruction

R/calc_gest.R

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#' calc_gest
2+
#'
3+
#' @description Calculate Gest
4+
#'
5+
#' @param dist matrix with distance pairs.
6+
#' @param r vector with distances r.
7+
#' @param n_points numeric with number of points
8+
#'
9+
#' @details
10+
#' Calculates Gest based on distances created with \code{get_dist_pairs}.
11+
#'
12+
#' @seealso
13+
#' \code{\link{get_dist_pairs}}
14+
#'
15+
#' @return data.frame
16+
#'
17+
#' @aliases calc_gest
18+
#' @rdname calc_gest
19+
#'
20+
#' @keywords internal
21+
calc_gest <- function(dist, r, n_points){
22+
23+
mat <- matrix(nrow = n_points, ncol = n_points, data = Inf)
24+
mat[dist[, 1:2]] <- dist[, 3]
25+
26+
distances_min <- apply(X = mat, MARGIN = 2, FUN = min, na.rm = TRUE)
27+
28+
hist_min <- graphics::hist(distances_min, breaks = r, plot = FALSE)
29+
30+
data.frame(r = hist_min$mids, edf = cumsum(hist_min$counts) / n_points)
31+
32+
}

R/calculate_energy.R

+11-66
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,13 @@
66
#' @param weights Vector with weights used to calculate energy.
77
#' The first number refers to Gest(r), the second number to pcf(r).
88
#' @param return_mean Logical if the mean energy is returned.
9-
#' @param comp_fast Integer with threshold at which summary functions are estimated
10-
#' in a computational fast way.
119
#' @param verbose Logical if progress report is printed.
1210
#'
1311
#' @details
1412
#' The function calculates the mean energy (or deviation) between the observed
1513
#' pattern and all reconstructed patterns (for more information see Tscheschel &
1614
#' Stoyan (2006) or Wiegand & Moloney (2014)). The pair correlation function and the
17-
#' nearest neighbour distance function are used to describe the patterns. For large
18-
#' patterns \code{comp_fast = TRUE} decreases the computational demand, because no edge
19-
#' correction is used and the pair correlation function is estimated based on Ripley's
20-
#' K-function. For more information see \code{\link{estimate_pcf_fast}}.
15+
#' nearest neighbour distance function are used to describe the patterns.
2116
#'
2217
#' @seealso
2318
#' \code{\link{plot_energy}} \cr
@@ -54,9 +49,8 @@
5449
#'
5550
#' @export
5651
calculate_energy <- function(pattern,
57-
weights = c(0.5, 0.5),
52+
weights = c(1, 1),
5853
return_mean = FALSE,
59-
comp_fast = 1000,
6054
verbose = TRUE){
6155

6256
# check if class is correct
@@ -83,7 +77,7 @@ calculate_energy <- function(pattern,
8377
# calculate r sequence
8478
r <- seq(from = 0,
8579
to = spatstat.explore::rmax.rule(W = pattern_observed$window,
86-
lambda = spatstat.geom::intensity.ppp(pattern_observed)),
80+
lambda = spatstat.geom::intensity.ppp(pattern_observed)),
8781
length.out = 250)
8882

8983
if (inherits(x = pattern, what = "rd_pat")) {
@@ -96,71 +90,22 @@ calculate_energy <- function(pattern,
9690

9791
} else {
9892

99-
# check if weights make sense
100-
if (sum(weights) > 1 || sum(weights) == 0) {
101-
102-
stop("The sum of 'weights' must be 0 < sum(weights) <= 1.", call. = FALSE)
103-
104-
}
105-
106-
# check if number of points exceed comp_fast limit
107-
if (pattern_observed$n > comp_fast) {
108-
109-
comp_fast <- TRUE
110-
111-
} else {
112-
113-
comp_fast <- FALSE
114-
115-
}
116-
11793
# calculate summary functions for observed pattern
118-
if (comp_fast) {
119-
120-
gest_observed <- spatstat.explore::Gest(X = pattern_observed, correction = "none",
121-
r = r)
122-
123-
pcf_observed <- estimate_pcf_fast(pattern = pattern_observed,
124-
correction = "none", method = "c",
125-
spar = 0.5, r = r)
94+
gest_observed <- spatstat.explore::Gest(X = pattern_observed,
95+
correction = "none", r = r)
12696

127-
} else {
128-
129-
gest_observed <- spatstat.explore::Gest(X = pattern_observed,
130-
correction = "han", r = r)
131-
132-
pcf_observed <- spatstat.explore::pcf(X = pattern_observed,
133-
correction = "best", divisor = "d", r = r)
134-
135-
}
97+
pcf_observed <- spatstat.explore::pcf(X = pattern_observed,
98+
correction = "none", divisor = "d", r = r)
13699

137100
# loop through all reconstructed patterns
138101
result <- vapply(seq_along(pattern_randomized), function(x) {
139102

140-
# fast computation of summary stats
141-
if (comp_fast) {
142-
143-
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
144-
correction = "none",
145-
r = r)
146-
147-
pcf_reconstruction <- estimate_pcf_fast(pattern = pattern_randomized[[x]],
148-
correction = "none", method = "c",
149-
spar = 0.5, r = r)
150-
151-
# normal computation of summary stats
152-
} else {
153-
154-
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
155-
correction = "han",
156-
r = r)
103+
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
104+
correction = "none", r = r)
157105

158106
pcf_reconstruction <- spatstat.explore::pcf(X = pattern_randomized[[x]],
159-
correction = "best",
160-
divisor = "d",
161-
r = r)
162-
163-
}
107+
correction = "none", divisor = "d",
108+
r = r)
164109

165110
# difference between observed and reconstructed pattern
166111
energy <- (mean(abs(gest_observed[[3]] - gest_reconstruction[[3]]), na.rm = TRUE) * weights[[1]]) +

R/data.R

-28
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,3 @@
3434
#'
3535
#' @format A spatstat ppp object.
3636
"species_b"
37-
38-
#' Gamma test
39-
#'
40-
#' Randomized data for species b using the gamma test.
41-
#'
42-
#' @format rd_pat object.
43-
"gamma_test"
44-
45-
#' Reconstruction
46-
#'
47-
#' Randomized data for species b using pattern reconstruction.
48-
#'
49-
#' @format rd_pat object.
50-
"reconstruction"
51-
52-
#' Torus trans
53-
#'
54-
#' Torus translation of the classified \code{landscape}.
55-
#'
56-
#' @format rd_ras object.
57-
"torus_trans"
58-
59-
#' Random walk
60-
#'
61-
#' Randomization of the \code{landscape} using the habitat randomization algorithm.
62-
#'
63-
#' @format rd_ras object.
64-
"random_walk"

R/estimate_pcf_fast.R

-46
This file was deleted.

R/get_dist_pairs.R

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#' get_dist_pairs
2+
#'
3+
#' @description Distance between points
4+
#'
5+
#' @param X ppp object
6+
#' @param rmax Numeric with maximum distance
7+
#'
8+
#' @details
9+
#' Returns matrix with point pairs and distances between them.
10+
#'
11+
#' @seealso
12+
#' \code{\link{pcf.ppp}}
13+
#'
14+
#' @return matrix
15+
#'
16+
#' @aliases get_dist_pairs
17+
#' @rdname get_dist_pairs
18+
#'
19+
#' @keywords internal
20+
get_dist_pairs <- function(X, rmax){
21+
22+
dist_observed <- spatstat.geom::closepairs(X = X, rmax = rmax, what = "ijd", twice = TRUE)
23+
24+
cbind(dist_observed$i, dist_observed$j, dist_observed$d)
25+
26+
}

R/pack_randomized.R

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
#' @export
2828
pack_randomized <- function(raster) {
2929

30-
# wrap observerd raster
31-
raster$observed <- terra::wrap(raster$observed)
30+
# check if observed is present
31+
# wrap observed raster
32+
if (inherits(x = raster$observed, what = "SpatRaster")) raster$observed <- terra::wrap(raster$observed)
3233

3334
# wrap all randomized raster
3435
raster$randomized <- lapply(X = raster$randomized, FUN = terra::wrap)

R/plot.rd_mar.R

+6-20
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
#' @param n Integer with number or vector of ids of randomized pattern to plot.
99
#' See Details section for more information.
1010
#' @param probs Vector with quantiles of randomized data used for envelope construction.
11-
#' @param comp_fast Integer with threshold at which summary functions are estimated
12-
#' in a computational fast way.
1311
#' @param ask Logical if the user is asked to press <RETURN> before second summary function
1412
#' is plotted (only used if \code{what = "sf"}).
1513
#' @param verbose Logical if progress report is printed.
@@ -18,9 +16,6 @@
1816
#' @details
1917
#' The function plots the pair correlation function and the nearest neighbour function of
2018
#' the observed pattern and the reconstructed patterns (as "simulation envelopes").
21-
#' For large patterns \code{comp_fast = TRUE} decreases the computational demand because no edge
22-
#' correction is used and the pair correlation function is estimated based on Ripley's
23-
#' K-function. For more information see \code{\link{estimate_pcf_fast}}.
2419
#'
2520
#' It is also possible to plot n randomized patterns and the observed pattern
2621
#' using \code{what = "pp"}. If \code{n} is a single number, \code{n} randomized
@@ -48,7 +43,7 @@
4843
#' @rdname plot.rd_mar
4944
#'
5045
#' @export
51-
plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_fast = 1000,
46+
plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975),
5247
ask = TRUE, verbose = TRUE, ...) {
5348

5449
# check if class is correct
@@ -70,17 +65,6 @@ plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
7065

7166
if (what == "sf") {
7267

73-
# check if number of points exceed comp_fast limit
74-
if (x$observed$n > comp_fast) {
75-
76-
comp_fast <- TRUE
77-
78-
} else {
79-
80-
comp_fast <- FALSE
81-
82-
}
83-
8468
name_unit <- spatstat.geom::unitname(x$observed)[[1]] # unit name for labels
8569

8670
# calculate r
@@ -135,8 +119,7 @@ plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
135119
# specify quantums g(r)
136120
col_kmmr <- ifelse(test = result_observed[, 3] < result_randomized[, 2] |
137121
result_observed[, 3] > result_randomized[, 3],
138-
yes = "#1f78b4",
139-
no = "#b2df8a")
122+
yes = "#1f78b4", no = "#b2df8a")
140123

141124
# plot results
142125
graphics::plot(NULL, xlim = range(r), ylim = yrange,
@@ -195,8 +178,11 @@ plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975), comp_
195178
# convert to dataframe
196179
current_pattern <- as.data.frame(subset_pattern[[i]])
197180

181+
current_pattern$marks <- ((current_pattern$marks - min(current_pattern$marks)) /
182+
(max(current_pattern$marks) - min(current_pattern$marks)) * 1) + 0.25
183+
198184
# plot points
199-
graphics::plot(x = current_pattern$x, y = current_pattern$y,
185+
graphics::plot(x = current_pattern$x, y = current_pattern$y, cex = current_pattern$marks,
200186
type = "p", asp = 1, xlim = x_range, ylim = y_range, axes = FALSE,
201187
main = names_pattern[[i]], xlab = "", ylab = "")
202188

0 commit comments

Comments
 (0)