Skip to content

Commit 66f668f

Browse files
authored
Merge pull request #131 from r-spatialecology/main
v2.2.1
2 parents 8569d8e + 82578f5 commit 66f668f

39 files changed

+54
-105
lines changed

DESCRIPTION

+1-1
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.2
4+
Version: 2.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]",

NEWS.md

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

R/calc_gest.R

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
#'
1515
#' @return data.frame
1616
#'
17-
#' @aliases calc_gest
18-
#' @rdname calc_gest
19-
#'
2017
#' @keywords internal
2118
calc_gest <- function(dist, r, n_points){
2219

R/calc_moments.R

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
#'
2020
#' @return matrix
2121
#'
22-
#' @aliases calc_moments
23-
#' @rdname calc_moments
24-
#'
2522
#' @keywords internal
2623
calc_moments <- function(fn,
2724
p,

R/calculate_energy.R

-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
#' calculate_energy(marks_recon, return_mean = FALSE)
3434
#' }
3535
#'
36-
#' @aliases calculate_energy
37-
#' @rdname calculate_energy
38-
#'
3936
#' @references
4037
#' Kirkpatrick, S., Gelatt, C.D.Jr., Vecchi, M.P., 1983. Optimization by simulated
4138
#' annealing. Science 220, 671–680. <https://doi.org/10.1126/science.220.4598.671>

R/classify_habitats.R

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
#' landscape_classified <- classify_habitats(terra::rast(landscape), style = "fixed",
2828
#' fixedBreaks = c(0, 0.25, 0.75, 1.0), return_breaks = TRUE)
2929
#'
30-
#' @aliases classify_habitats
31-
#' @rdname classify_habitats
32-
#'
3330
#' @references
3431
#' Armstrong, M.P., Xiao, N., Bennett, D.A., 2003. Using genetic algorithms to create
3532
#' multicriteria class intervals for choropleth maps. Annals of the Association of

R/classint_to_vector.R

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
#' classint_to_vector(x = landscape_classified$breaks, digits = 4)
1717
#' }
1818
#'
19-
#' @aliases classint_to_vector
20-
#' @rdname classint_to_vector
21-
#'
2219
#' @keywords internal
2320
classint_to_vector <- function(x, digits = NULL) {
2421

R/compute_statistics.R

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
#'
1616
#' @return list
1717
#'
18-
#' @aliases compute_statistics
19-
#' @rdname compute_statistics
20-
#'
2118
#' @keywords internal
2219
compute_statistics <- function(x, y, k, xr, yr, w_statistics, bw, divisor, kernel_arg, r) {
2320

R/create_neighbourhood.R

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
#' create_neighbourhood(cell_id, mat)
2323
#' }
2424
#'
25-
#' @aliases create_neighbourhood
26-
#' @rdname create_neighbourhood
27-
#'
2825
#' @keywords internal
2926
create_neighbourhood <- function(cells, matrix, directions = 4) {
3027

R/dummy_transf.R

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
#'
1212
#' @return matrix
1313
#'
14-
#' @aliases dummy_transf
15-
#' @rdname dummy_transf
16-
#'
1714
#' @keywords internal
1815
to_dummy <- function(f) {
1916
x <- matrix(0, length(f), nlevels(f), dimnames=list(names(f), levels(f)))

R/energy_fun.R

-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
#'
2525
#' @return vector
2626
#'
27-
#' @aliases energy_fun
28-
#' @rdname energy_fun
29-
#'
3027
#' @keywords internal
3128
#'
3229
Energy_fun <- function(f, f0, statistics, f_, f0_, statistics_, fn, p, p_, Lp, w_statistics) {

R/extract_points.R

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
#' extract_points(raster = landscape_classified, pattern = species_b)
2020
#' }
2121
#'
22-
#' @aliases extract_points
23-
#' @rdname extract_points
24-
#'
2522
#' @keywords internal
2623
extract_points <- function(raster, pattern){
2724

R/fit_point_process.R

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
#' @examples
2323
#' pattern_fitted <- fit_point_process(pattern = species_a, n_random = 39)
2424
#'
25-
#' @aliases fit_point_process
26-
#' @rdname fit_point_process
27-
#'
2825
#' @references
2926
#' Plotkin, J.B., Potts, M.D., Leslie, N., Manokaran, N., LaFrankie, J.V.,
3027
#' Ashton, P.S., 2000. Species-area curves, spatial aggregation, and habitat specialization

R/get_dist_pairs.R

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
#'
1414
#' @return matrix
1515
#'
16-
#' @aliases get_dist_pairs
17-
#' @rdname get_dist_pairs
18-
#'
1916
#' @keywords internal
2017
get_dist_pairs <- function(X, rmax){
2118

R/list_to_randomized.R

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
#' list_to_randomized(list = fit_list, observed = species_a)
2828
#' }
2929
#'
30-
#' @aliases list_to_randomized
31-
#' @rdname list_to_randomized
32-
#'
3330
#' @export
3431
list_to_randomized <- function(list, observed = NULL) {
3532

R/pack_randomized.R

-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
#' x <- pack_randomized(raster = landscape_random)
2222
#' }
2323
#'
24-
#' @aliases pack_randomized
25-
#' @rdname pack_randomized
26-
#'
2724
#' @export
2825
pack_randomized <- function(raster) {
2926

R/plot.rd_mar.R

-4
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
#' plot(marks_recon)
3939
#' }
4040
#'
41-
#'
42-
#' @aliases plot.rd_mar
43-
#' @rdname plot.rd_mar
44-
#'
4541
#' @export
4642
plot.rd_mar <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975),
4743
ask = TRUE, verbose = TRUE, ...) {

R/plot.rd_multi.R

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
#'
1717
#' @return void
1818
#'
19-
#' @aliases plot.rd_multi
20-
#' @rdname plot.rd_multi
21-
#'
2219
#' @export
2320
plot.rd_multi <- function(x, verbose = TRUE, ...) {
2421

R/plot.rd_pat.R

-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
#' plot(pattern_recon)
3939
#' }
4040
#'
41-
#' @aliases plot.rd_pat
42-
#' @rdname plot.rd_pat
43-
#'
4441
#' @export
4542
plot.rd_pat <- function(x, what = "sf", n = NULL, probs = c(0.025, 0.975),
4643
ask = TRUE, verbose = TRUE, ...) {

R/plot.rd_ras.R

-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
#' plot(landscape_random)
2929
#' }
3030
#'
31-
#' @aliases plot.rd_ras
32-
#' @rdname plot.rd_ras
33-
#'
3431
#' @export
3532
plot.rd_ras <- function(x, n = NULL, col, verbose = TRUE, nrow, ncol, ...) {
3633

R/plot_energy.R

-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
#' plot_energy(marks_recon)
2929
#' }
3030
#'
31-
#' @aliases plot_energy
32-
#' @rdname plot_energy
33-
#'
3431
#' @export
3532
plot_energy <- function(pattern,
3633
col = NULL){

R/print.rd_mar.R

-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
#' print(marks_recon)
2525
#' }
2626
#'
27-
#' @aliases print.rd_mar
28-
#' @rdname print.rd_mar
29-
#'
3027
#' @export
3128
print.rd_mar <- function(x, digits = 4, ...) {
3229

R/print.rd_pat.R

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
#' print(pattern_recon)
2626
#' }
2727
#'
28-
#' @aliases print.rd_pat
29-
#' @rdname print.rd_pat
30-
#'
3128
#' @export
3229
print.rd_pat <- function(x,
3330
digits = 4,

R/print.rd_ras.R

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
#' print(landscape_random)
2424
#' }
2525
#'
26-
#' @aliases print.rd_ras
27-
#' @rdname print.rd_ras
28-
#'
2926
#' @export
3027
print.rd_ras <- function(x, ...) {
3128

R/randomize_raster.R

-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
#' landscape_random <- randomize_raster(landscape_classified, n_random = 19)
3333
#' }
3434
#'
35-
#' @aliases randomize_raster
36-
#' @rdname randomize_raster
37-
#'
3835
#' @references
3936
#' Harms, K.E., Condit, R., Hubbell, S.P., Foster, R.B., 2001. Habitat associations of
4037
#' trees and shrubs in a 50-ha neotropical forest plot. Journal of Ecology 89, 947–959.

R/reconstruct_algorithm.R

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
#'
2424
#' @return list
2525
#'
26-
#' @aliases reconstruct_algorithm
27-
#' @rdname reconstruct_algorithm
28-
#'
2926
#' @keywords internal
3027
reconstruct_algorithm <- function(pattern,
3128
method,

R/reconstruct_pattern.R

-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,6 @@
6969
#' pattern_recon <- reconstruct_pattern(species_b, n_random = 19, max_runs = 1000)
7070
#' }
7171
#'
72-
#' @aliases reconstruct_pattern
73-
#' @rdname reconstruct_pattern
74-
#'
7572
#' @references
7673
#' Kirkpatrick, S., Gelatt, C.D.Jr., Vecchi, M.P., 1983. Optimization by simulated
7774
#' annealing. Science 220, 671–680. <https://doi.org/10.1126/science.220.4598.671>

R/reconstruct_pattern_marks.R

-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@
4949
#' n_random = 19, max_runs = 1000)
5050
#' }
5151
#'
52-
#' @aliases reconstruct_pattern_marks
53-
#' @rdname reconstruct_pattern_marks
54-
#'
5552
#' @references
5653
#' Kirkpatrick, S., Gelatt, C.D.Jr., Vecchi, M.P., 1983. Optimization by simulated
5754
#' annealing. Science 220, 671–680. <https://doi.org/10.1126/science.220.4598.671>

R/reconstruct_pattern_multi.R

-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@
9494
#' max_steps = 10000)
9595
#' }
9696
#'
97-
#' @aliases reconstruct_pattern_multi
98-
#' @rdname reconstruct_pattern_multi
99-
#'
10097
#' @references
10198
#' Kirkpatrick, S., Gelatt, C.D.Jr., Vecchi, M.P., 1983. Optimization by simulated
10299
#' annealing. Science 220, 671–680. <https://doi.org/10.1126/science.220.4598.671>

R/results_habitat_association.R

-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@
3636
#' species_a_random <- fit_point_process(species_a, n_random = 199)
3737
#' results_habitat_association(pattern = species_a_random, raster = landscape_classified)
3838
#'
39-
#' @aliases results_habitat_association
40-
#' @rdname results_habitat_association
41-
#'
4239
#' @references
4340
#' Harms, K.E., Condit, R., Hubbell, S.P., Foster, R.B., 2001. Habitat associations of
4441
#' trees and shrubs in a 50-ha neotropical forest plot. Journal of Ecology 89, 947–959.

R/sample_randomized.R

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
#' sample_randomized(randomized = reconstruction$randomized, n = c(5, 10, 15))
1919
#' }
2020
#'
21-
#' @aliases sample_randomized
22-
#' @rdname sample_randomized
23-
#'
2421
#' @keywords internal
2522
sample_randomized <- function(randomized, n = NULL, verbose = TRUE) {
2623

R/select_kernel.R

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
#'
1818
#' @return list
1919
#'
20-
#' @aliases select_kernel
21-
#' @rdname select_kernel
22-
#'
2320
#' @keywords internal
2421
#'
2522
select_kernel <- function(kernel_arg, bw, rmax, divisor) {

R/translate_raster.R

-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
#' steps_x = 1:10, steps_y = 1:5)
3333
#' }
3434
#'
35-
#' @aliases translate_raster
36-
#' @rdname translate_raster
37-
#'
3835
#' @references
3936
#' Harms, K.E., Condit, R., Hubbell, S.P., Foster, R.B., 2001. Habitat associations
4037
#' of trees and shrubs in a 50-ha neotropical forest plot. Journal of Ecology 89, 947–959.

R/unpack_randomized.R

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
#' y <- unpack_randomized(raster = y)
2424
#' }
2525
#'
26-
#' @aliases unpack_randomized
27-
#' @rdname unpack_randomized
28-
#'
2926
#' @export
3027
unpack_randomized <- function(raster) {
3128

0 commit comments

Comments
 (0)