You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plot_hex(df=eberg_spc@predicted@data[,1:2], pts=ov.rnd, title = 'PCA Ebergotzen SRS')
250
250
251
251
```
252
252
@@ -320,7 +320,7 @@ the two occurrence probability maps derived using maxlike next to each other (ac
320
320
```{r eberg-maxlike2, echo = TRUE, out.width = "100%", fig.cap = "Comparison occurrence probability for actual and SRS samples derived using the maxlike package."}
321
321
322
322
occ_prob <- stack(raster(iprob$maxlike),ml.prob)
323
-
names(occ_prob) <- c("maxlike","ml.prob")
323
+
names(occ_prob) <- c("Actual","SRS") # instead of c("maxlike","ml.prob")
324
324
325
325
compare.map(df=occ_prob, points =rnd_pred , fill=rev(terrain.colors(5)), title = "Occurrence probability for actual and SRS samples using maxlike")
326
326
@@ -571,3 +571,39 @@ If you detect problems in feature space representation based on an existing poin
571
571
sampling set, you can try to reduce those problems by adding additional samples e.g. through
572
572
**covariate space infill sampling**[@Brus2021sampling] or through 2nd round
573
573
sampling and then re-analysis. These methods are discussed in further chapters.
Copy file name to clipboardexpand all lines: summary.Rmd
+9-2
Original file line number
Diff line number
Diff line change
@@ -31,8 +31,14 @@ as the most advantageous sampling design for predictive mapping [@ma2020comparis
31
31
Such sampling diagnostics / comparisons geographical vs feature space help us
32
32
detect any possible problems before we start running ML.
33
33
34
-
```{r summary-eberg, echo=FALSE, fig.cap="Summary comparison of sampling designs: convenience sampling (actual), Simple Random Sample (SRS), Latin Hypercube Sampling (LHS), and Feature Space Coverage Sampling (FSCS). Points shown in geographical (above) and feature space (below; with first 2 principal components as x, y coordinates).", out.width="100%"}
```{r summary-eberg, fig.width=13.5, fig.height=5.5, echo=FALSE, fig.cap="Summary comparison of sampling designs: convenience sampling (actual), Simple Random Sample (SRS), Latin Hypercube Sampling (LHS), and Feature Space Coverage Sampling (FSCS). Points shown in geographical (above) and feature space (below; with first 2 principal components as x, y coordinates).", out.width="100%"}
0 commit comments