forked from GonzalezBiodiversityLab/HSM_NCC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HSM_example.Rmd
61 lines (35 loc) · 1021 Bytes
/
HSM_example.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: "Habitat Suitability Models"
author: "Juan Zuloaga, Nikol Dimitrov, Richard Schuster, Andrew Gonzalez"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Species
`r myspecies`
```{r}
plot(box_extent_analysis_bf$geometry)
plot(Obs_gbif_data_sp, col="red", pch=20, add=T)
```
## Predictors (example)
```{r}
plot(lakes_100m_agg)
plot(box_extent_analysis_bf$geometry, add=T)
plot(Obs_gbif_data_sp, col="red", pch=20, add=T)
```
## Prediction map
```{r}
# e_pol <- st_bbox(box_extent_analysis_bf_aeac)
#model_species_prediction_e <- setExtent(model_species_prediction, c(e_pol[1], e_pol[3], e_pol[2], e_pol[4]))
plot(model_species_prediction_p)
plot(box_extent_analysis_bf_aeac$geometry, add=T)
plot(Obs_gbif_data_sf, col="red", pch=20, add=T)
```
## Uncertainty map
```{r}
plot(uncertainty_p)
plot(box_extent_analysis_bf_aeac$geometry, add=T)
plot(Obs_gbif_data_sf, col="red", pch=20, add=T)
```