Get started

Maximilian H.K. Hesselbarth

2022-03-05

library(shar)
library(spatstat)
library(raster)

set.seed(42)

Design

The core of shar are functions to to simulate null model data by randomizing either the environmental data (i.e. raster data) or the locations of species (i.e. point pattern data). The null data is then used to analyse if significant species-habitat associations are present. Additionally, functions to visualize and analyse the results are available as well as some utility functions. The methods are mainly described in Harms et al. (2001), Plotkin et al. (2000) and Wiegand & Moloney (2014). The methods are not necessary complementary, but are rather different approaches for the same result.

Preprocessing of input data

All functions are designed for discrete habitat classes. Following, in case only continuous data is available, this has to be classified to discrete classes. classify_habitats provides several ways to classify the data such as the Fisher-Jenks algorithm (Fisher 1958, Jenks & Caspall 1971)

landscape_discrete <- classify_habitats(raster = landscape, n = 5, style = "fisher")

Randomize environmental data

There are two functions to randomize the environmental data: translate_raster() and randomize_raster(). The first function is a torus translation of the raster, shifting the habitat map in all four cardinal directions. This is only possible for rectangular observation areas and results in n_random <- (raster::nrow(landscape) + 1) * (raster::ncol(landscape) + 1) - 4 randomized rasters. The other function randomizes the environmental data using a random-walk algorithm. Here, the number of randomized rasters can be specified using the n_random argument.

However, all methods require “fully mapped data” in a sense that NA cells of the environmental data are allowed only if simultaneously these areas cannot accommodate any locations of the point pattern (e.g., a water body within a forest area). This needs to be reflected in the observation window of the point pattern. For the torus translation method, no NA values are allowed at all.

torus_trans <- translate_raster(raster = landscape_discrete)

random_walk <- randomize_raster(raster = landscape_discrete, n_random = 99)

Randomize location data

To randomize the location data (i.e. the point pattern) either fit_point_process() or reconstruct_pattern() are available. The first fits either a Poisson process or a cluster process to the data. The difference to solutions from the spatstat package is that the number of points is always identical. The second functions reconstructs the spatial characteristics of the data using pattern reconstruction (Tscheschel & Stoyan 2006). This is advantageous for point patterns not describable by simple point process models. For both function, the number of patterns can be specified by the n_random argument.

gamma_test <- fit_point_process(pattern = species_b, process = "cluster", n_random = 99)

# (this can takes some time)
reconstruction <- reconstruct_pattern(pattern = species_b, n_random = 99, 
                                      e_threshold = 0.05, method = "cluster")

Analyse results

The most important function to analyse results is results_habitat_association(). This function compares the observed data to the null model data and by that is able to show significant species-habitat associations. The functions work for both, randomized environmental data or randomized location data.

Please be aware that due to the randomization of the null model data, results might slightly differ between different randomization approaches (e.g., fit_point_process() vs. translate_raster()) and even for repetitions of the same approach. However, the counts of the observed data should be identical, and general results and trends should be similar.

results_habitat_association(pattern = species_a, raster = random_walk)
#> > Input: randomized raster
#> > Quantile thresholds: negative < 0.025 || positive > 0.975
#>   habitat breaks count    lo    hi significance
#> 1       1     NA    35 10.45 32.10     positive
#> 2       2     NA    44 22.45 50.55         n.s.
#> 3       3     NA    36 20.00 48.55         n.s.
#> 4       4     NA     4 25.90 55.00     negative
#> 5       5     NA    73 46.80 79.10         n.s.

results_habitat_association(pattern = reconstruction, raster = landscape_discrete)
#> > Input: randomized pattern
#> > Quantile thresholds: negative < 0.025 || positive > 0.975
#>   habitat breaks count    lo    hi significance
#> 1       1     NA     6 27.00 47.00     negative
#> 2       2     NA    18 35.35 63.55     negative
#> 3       3     NA    18 28.45 48.00     negative
#> 4       4     NA    21 20.00 38.55         n.s.
#> 5       5     NA   129 30.00 50.55     positive

There is also the possibility to visualize the randomized data using the plot() function.

plot(random_walk)


plot(reconstruction, ask = FALSE)

For the randomized point pattern data, it is also possible to show the “difference” in terms of the energy (Tscheschel & Stoyan 2006) between the patterns.

calculate_energy(pattern = gamma_test, return_mean = TRUE)
#> [1] 0.1346688

calculate_energy(pattern = reconstruction, return_mean = TRUE)
#> [1] 0.04908566

References

Fisher, W.D., 1958. On grouping for maximum homogeneity. Journal of the American Statistical Association 53, 789–798. https://doi.org/10.1080/01621459.1958.10501479

Harms, K.E., Condit, R., Hubbell, S.P., Foster, R.B., 2001. Habitat associations of trees and shrubs in a 50-ha neotropical forest plot. Journal of Ecology 89, 947–959. https://doi.org/10.1111/j.1365-2745.2001.00615.x

Jenks, G.F., Caspall, F.C., 1971. Error in choroplethic maps: Definition, measurement, reduction. Annals of the Association of American Geographers 61, 217–244. https://doi.org/10.1111/j.1467-8306.1971.tb00779.x

Plotkin, J.B., Potts, M.D., Leslie, N., Manokaran, N., LaFrankie, J.V., Ashton, P.S., 2000. Species-area curves, spatial aggregation, and habitat specialization in tropical forests. Journal of Theoretical Biology 207, 81–99. https://doi.org/10.1006/jtbi.2000.2158

Tscheschel, A., Stoyan, D., 2006. Statistical reconstruction of random point patterns. Computational Statistics and Data Analysis 51, 859–871. https://doi.org/10.1016/j.csda.2005.09.007

Wiegand, T., Moloney, K.A., 2014. Handbook of spatial point-pattern analysis in ecology. Chapman and Hall/CRC Press, Boca Raton. ISBN 978-1-4200-8254-8