Skip to content

Commit 8569d8e

Browse files
authored
Merge pull request #130 from r-spatialecology/main
v2.2
2 parents 59f33e7 + 8b37fde commit 8569d8e

Some content is hidden

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

47 files changed

+1778
-196
lines changed

.github/workflows/R-CMD-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
1818

1919
strategy:
20-
fail-fast: false
20+
fail-fast: FALSE
2121
matrix:
2222
config:
2323
- {os: macOS-latest, r: 'release'}

.github/workflows/Test-coverage.yaml

+20-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,24 @@ jobs:
3131
needs: coverage
3232

3333
- name: Test coverage
34-
run: covr::codecov(quiet = FALSE)
34+
run: |
35+
covr::codecov(
36+
quiet = FALSE,
37+
clean = FALSE,
38+
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
39+
)
3540
shell: Rscript {0}
41+
42+
- name: Show testthat output
43+
if: always()
44+
run: |
45+
## --------------------------------------------------------------------
46+
find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
47+
shell: bash
48+
49+
- name: Upload test results
50+
if: failure()
51+
uses: actions/upload-artifact@v3
52+
with:
53+
name: coverage-test-failures
54+
path: ${{ runner.temp }}/package

DESCRIPTION

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
Type: Package
22
Package: shar
33
Title: Species-Habitat Associations
4-
Version: 2.1.1
4+
Version: 2.2
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]",
88
role = "aut", comment = c(ORCID = "0000-0002-3042-5435")),
9+
person("Chris", "Wudel", email = "[email protected]",
10+
role = "aut", comment = c(ORCID = "0000-0003-0446-4665")),
911
person("Zeke", "Marshall", email = "[email protected]",
1012
role = "ctb", comment = c(ORCID = "0000-0001-9260-7827")),
1113
person("Thomas", "Etherington", email = "[email protected]",

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Generated by roxygen2: do not edit by hand
22

33
S3method(plot,rd_mar)
4+
S3method(plot,rd_multi)
45
S3method(plot,rd_pat)
56
S3method(plot,rd_ras)
67
S3method(print,rd_mar)
@@ -15,6 +16,7 @@ export(plot_energy)
1516
export(randomize_raster)
1617
export(reconstruct_pattern)
1718
export(reconstruct_pattern_marks)
19+
export(reconstruct_pattern_multi)
1820
export(results_habitat_association)
1921
export(translate_raster)
2022
export(unpack_randomized)

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# shar 2.2
2+
* Improvements
3+
* Added a new function `reconstruct_pattern_multi()` including several internal functions and methods
4+
15
# shar 2.1.1
26
* Bugfixes (thanks to @baddstats)
37

R/calc_moments.R

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
#' calc_moments
2+
#'
3+
#' @description Calculate moments
4+
#'
5+
#' @param fn Determination of the weightings of the mark correlation functions.
6+
#' @param p Defines the initial state of the new ponit pattern.
7+
#' @param x,y x and y coordinates of the points from the reference point pattern.
8+
#' @param mark Marks the currently viewed point pattern.
9+
#' @param kernel Result of the kernel calculation, calculated with the calc_kernels function.
10+
#' @param rmax_bw Maximum distance at which the summary statistics are
11+
#' evaluated + Bandwidth with which the kernels are scaled, so that this is the
12+
#' standard deviation of the smoothing kernel.
13+
#' @param r Sequence from rmin to rmax in rcount steps.
14+
#' @param exclude Vector indicating which values not to use.
15+
#'
16+
#' @details
17+
#' Definition of the product-moment function for calculating the contribution
18+
#' of a point at the coordinates x, y with marking.
19+
#'
20+
#' @return matrix
21+
#'
22+
#' @aliases calc_moments
23+
#' @rdname calc_moments
24+
#'
25+
#' @keywords internal
26+
calc_moments <- function(fn,
27+
p,
28+
exclude = NULL,
29+
x,
30+
y,
31+
mark,
32+
kernel,
33+
rmax_bw,
34+
r) {
35+
36+
d2 <- (p$x-x)^2 + (p$y-y)^2
37+
use <- d2 <= rmax_bw^2
38+
use[exclude] <- FALSE
39+
z <- crossprod(p$mark[use, , drop = FALSE],
40+
outer(sqrt(d2[use]), r, function(d, r) kernel(r, d)))
41+
z[fn$i, , drop = FALSE] * mark[fn$j] + z[fn$j, , drop = FALSE] * mark[fn$i]
42+
}
43+
44+
calc_moments_full <- function(fn,
45+
p,
46+
kernel,
47+
rmax_bw,
48+
r) {
49+
50+
f <- 0
51+
for (i in seq_len(nrow(p))) {
52+
f <- f + calc_moments(fn, p, i:nrow(p), p$x[i], p$y[i], p$mark[i, ],
53+
kernel, rmax_bw, r)
54+
}
55+
rownames(f) <- paste(names(fn$i), names(fn$j), sep = ":")
56+
f
57+
}

R/calculate_energy.R

+4-5
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,17 @@ calculate_energy <- function(pattern,
9494
gest_observed <- spatstat.explore::Gest(X = pattern_observed,
9595
correction = "none", r = r)
9696

97-
pcf_observed <- spatstat.explore::pcf(X = pattern_observed,
98-
correction = "none", divisor = "d", r = r)
97+
pcf_observed <- spatstat.explore::pcf.ppp(X = pattern_observed, correction = "none", divisor = "d", r = r)
9998

10099
# loop through all reconstructed patterns
101100
result <- vapply(seq_along(pattern_randomized), function(x) {
102101

103102
gest_reconstruction <- spatstat.explore::Gest(X = pattern_randomized[[x]],
104103
correction = "none", r = r)
105104

106-
pcf_reconstruction <- spatstat.explore::pcf(X = pattern_randomized[[x]],
107-
correction = "none", divisor = "d",
108-
r = r)
105+
pcf_reconstruction <- spatstat.explore::pcf.ppp(X = pattern_randomized[[x]],
106+
correction = "none", divisor = "d",
107+
r = r)
109108

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

R/compute_statistics.R

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#' compute_statistics
2+
#'
3+
#' @description Compute summary statistics
4+
#'
5+
#' @param x,y x and y coordinates of the points from the reference point pattern.
6+
#' @param k Vector of values k; used only if Dk is included in w_statistics below.
7+
#' @param xr,yr x and y extension of the observation window (start, end).
8+
#' @param w_statistics vector of named weights for optional spatial statistics
9+
#' from the \code{spatstat} package to be included in the energy calculation. This may
10+
#' include Dk, K, Hs, pcf.
11+
#' @param bw,divisor,kernel_arg,r Several parameters related to summary function.
12+
#'
13+
#' @details
14+
#' Compute optional spatial statistics using the spatstat package.
15+
#'
16+
#' @return list
17+
#'
18+
#' @aliases compute_statistics
19+
#' @rdname compute_statistics
20+
#'
21+
#' @keywords internal
22+
compute_statistics <- function(x, y, k, xr, yr, w_statistics, bw, divisor, kernel_arg, r) {
23+
24+
stat <- names(w_statistics)
25+
names(stat) <- stat
26+
lapply(stat, function(name) switch(name,
27+
# Calculation of the Dk(r)-function, if this is to be taken into account for the energy calculation.
28+
Dk = {
29+
nnd_ <- as.matrix(spatstat.geom::nndist(x, y, k=k))
30+
apply(nnd_, 2, function(z) cumsum(graphics::hist(z[z <= max(r)], breaks = c(-Inf, max(r)), plot = FALSE) $ count) / length(z))
31+
},
32+
33+
# Calculation of the K(r)-function, if this is to be taken into account for the energy calculation.
34+
K = {
35+
kest<-spatstat.explore::Kest(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), rmax=max(r), correction="none")
36+
kest$un
37+
},
38+
39+
# Calculation of the pcf(r)-function (spherical contact distribution), if this is to be taken into account for the energy calculation.
40+
pcf = {
41+
pcfest<-spatstat.explore::pcf.ppp(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), r=c(0,r), kernel=kernel_arg, divisor=divisor, bw=bw, correction="none")
42+
pcfest$un
43+
},
44+
# Calculation of the Hs(r)-function (pair correlation function), if this is to be taken into account for the energy calculation.
45+
Hs = {
46+
hest<-spatstat.explore::Hest(spatstat.geom::ppp(x,y,window=spatstat.geom::owin(xr,yr)), correction="none")
47+
hest$raw
48+
},
49+
# wrong selection
50+
stop("unknown statistic")
51+
)
52+
)
53+
}

R/data.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' generated with the \code{NLMR::nlm_fbm()} algorithm.
55
#'
66
#' @format A SpatRaster object.
7-
#' @source Simulated neutral landscape model with R. https://github.com/ropensci/NLMR/
7+
#' @source Simulated neutral landscape model with R. <https://github.com/ropensci/NLMR/>
88
"landscape"
99

1010
#' Species a

R/dummy_transf.R

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#' dummy_transf
2+
#'
3+
#' @description Tranfsorm to dummy variables
4+
#'
5+
#' @param f Result of the calc_moments_full function which represents
6+
#' product-moment contribution of a point at coordinates x, y with marks,
7+
#' for the whole point pattern.
8+
#'
9+
#' @details
10+
#' Function for the transformation of variables to dummy variables and back
11+
#'
12+
#' @return matrix
13+
#'
14+
#' @aliases dummy_transf
15+
#' @rdname dummy_transf
16+
#'
17+
#' @keywords internal
18+
to_dummy <- function(f) {
19+
x <- matrix(0, length(f), nlevels(f), dimnames=list(names(f), levels(f)))
20+
x[cbind(seq_along(f), as.integer(f))] <- 1
21+
x
22+
}
23+
24+
from_dummy <- function(x, levels=colnames(x)) {
25+
f <- as.integer(x %*% seq_along(levels))
26+
levels(f) <- levels
27+
class(f) <- "factor"
28+
f
29+
}

R/energy_fun.R

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#' energy_fun
2+
#'
3+
#' @description Energy function
4+
#'
5+
#' @param f Result of the calc_moments_full function which represents
6+
#' product-moment contribution of a point at coordinates x, y with marks,
7+
#' for the whole new ponit pattern.
8+
#' @param f0 Column sums of the weights of the brand correlation functions of
9+
#' the new point pattern.
10+
#' @param statistics Results of the compute_statistics function for the
11+
#' new point pattern (calculation of optional spatial statistics).
12+
#' @param fn Determination of the weightings of the mark correlation functions.
13+
#' @param p Defines the initial state of the new ponit pattern.
14+
#' @param p_ Reference point pattern.
15+
#' @param Lp Distance measure for the calculation of the energy function
16+
#' (Lp distance, 1 <= p <Inf).
17+
#' @param w_statistics Vector of named weights for optional spatial statistics
18+
#' from the \code{spatstat} package to be included in the energy calculation.This may
19+
#' include Dk, K, Hs, pcf.
20+
#'
21+
#' @details
22+
#' Defining the Energy_fun function to calculate the "energy" of the pattern
23+
#' (where a lower energy indicates a better match).
24+
#'
25+
#' @return vector
26+
#'
27+
#' @aliases energy_fun
28+
#' @rdname energy_fun
29+
#'
30+
#' @keywords internal
31+
#'
32+
Energy_fun <- function(f, f0, statistics, f_, f0_, statistics_, fn, p, p_, Lp, w_statistics) {
33+
result <- c(
34+
f = sum(fn$w * rowMeans(abs(
35+
f / nrow(p) -
36+
f_ / nrow(p_)
37+
)^Lp)),
38+
f0 = sum(fn$w0 * abs(
39+
f0 / nrow(p) -
40+
f0_ / nrow(p_)
41+
)^Lp),
42+
if (length(w_statistics))
43+
sapply(seq_along(w_statistics), function(i) w_statistics[i] *
44+
mean(abs(statistics[[i]] - statistics_[[i]])^Lp, na.rm = TRUE),
45+
USE.NAMES=FALSE
46+
)
47+
)
48+
c(energy = sum(result), result)
49+
}

0 commit comments

Comments
 (0)