Description Usage Arguments Value Author(s) References See Also Examples
View source: R/sequential.hotspots.R
This function applies hotspots
sequencially to a given set of submatrices to identify the hotspot regions in each dataset, using an adaptation of the method of Malo et al. (2004).
1 2 | sequential.hotspots(dataset, submats, region.column,
first.subsampl.col, confidence = 0.95)
|
dataset |
name of the matrix or dataframe containing the complete data |
submats |
a list of the submatrices for which to calculate the hotspots (result of the
|
region.column |
name or index number of the column containing the regions (road segments, sites) to classify as hotspots or non-hotspots |
first.subsampl.col |
index number of the first column containing subsampling data |
confidence |
confidence threshold to consider hotspots. The default is 0.95 |
A list of 2 elements:
hotspots.thresholds |
A named integer vector |
hotspots.maps |
A list of data frames, each showing the total number of events (deaths) per region and whether or not it was considered a hospot. |
A. Marcia Barbosa
Malo, J.E., Suarez, F., Diez, A. (2004) Can we mitigate animal-vehicle accidents using predictive models? J. Appl. Ecol. 41, 701-710 (doi: 10.1111/j.0021-8901.2004.00929.x)
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(roadkills)
submats <- sequential.submatrix(dataset = roadkills,
sampl.columns = 4:ncol(roadkills), window.sizes = 1, gap.sizes = 1:3,
group.column = "taxon", include.all.together = TRUE,
remove.zeros = TRUE, keep.nonsampl.columns = TRUE,
n.subsampl.columns = 85)
shs <- sequential.hotspots(dataset = roadkills, submats = submats,
region.column = "segment", first.subsampl.col = 4, confidence = 0.95)
shs
str(shs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.