Skip to content

Commit cacfe57

Browse files
committed
Summary plot update
1 parent 28559d9 commit cacfe57

File tree

4 files changed

+66
-4
lines changed

4 files changed

+66
-4
lines changed

output/summary_plot.rds

42.3 MB
Binary file not shown.

sampling.Rmd

+38-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ these points represent the feature space using a density plot:
246246
```{r eberg-fs, echo = TRUE, out.width = "80%", fig.cap = "Distribution of the SRS points from the previous example in the feature space."}
247247
ov.rnd = sp::over(rnd, eberg_spc@predicted[,1:2])
248248
249-
plot_hex(df=eberg_spc@predicted@data[,1:2], pts=ov.rnd)
249+
plot_hex(df=eberg_spc@predicted@data[,1:2], pts=ov.rnd, title = 'PCA Ebergotzen SRS')
250250
251251
```
252252

@@ -320,7 +320,7 @@ the two occurrence probability maps derived using maxlike next to each other (ac
320320
```{r eberg-maxlike2, echo = TRUE, out.width = "100%", fig.cap = "Comparison occurrence probability for actual and SRS samples derived using the maxlike package."}
321321
322322
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")
324324
325325
compare.map(df=occ_prob, points =rnd_pred , fill=rev(terrain.colors(5)), title = "Occurrence probability for actual and SRS samples using maxlike")
326326
@@ -571,3 +571,39 @@ If you detect problems in feature space representation based on an existing poin
571571
sampling set, you can try to reduce those problems by adding additional samples e.g. through
572572
**covariate space infill sampling** [@Brus2021sampling] or through 2nd round
573573
sampling and then re-analysis. These methods are discussed in further chapters.
574+
575+
576+
577+
578+
```{r fig.height=5.5, fig.width=13.5, include=FALSE}
579+
580+
library(patchwork)
581+
582+
c <- theme(plot.title = element_text(hjust = 0.5,size=14))+
583+
theme(legend.key.size = unit(0.3, 'cm'), #change legend key size
584+
legend.key.height = unit(0.3, 'cm'), #change legend key height
585+
legend.key.width = unit(0.5, 'cm'), #change legend key width
586+
legend.title = element_text(size=12), #change legend title font size
587+
legend.text = element_text(size=9)) #change legend text font size
588+
589+
actual <- plot.map(df=raster(iprob$maxlike), points =rnd_pred , fill=rev(terrain.colors(5))) + theme_void()+c
590+
actual_hex <- plot_hex4(df=eberg_spc@predicted@data[,1:2], pts=ov2.rnd, title = 'PCA Ebergotzen actual')+c
591+
592+
SRS <- plot.map(df = raster(eberg_spc@predicted[1]), points = rnd_pred) + theme_void()+c
593+
SRS_hex <- plot_hex4(df=eberg_spc@predicted@data[,1:2], pts=ov.rnd, title = 'PCA Ebergotzen SRS')+c
594+
595+
LHS <- plot.map(df=raster(eberg_spc@predicted[1]),points = as.data.frame(rnd.lhs$sampled_data@coords)) + theme_void()+c
596+
LHS_hex <- plot_hex4(df=eberg_spc@predicted@data[,1:2], pts=as.data.frame(rnd.lhs$sampled_data@data), title = 'PCA Ebergotzen LHS')+c
597+
598+
FSCS <- plot.map(df=raster(eberg_spc@predicted[1]),points = as.data.frame(rnd.fscs)) + theme_void()+c
599+
FSCS_hex <- plot_hex4(df=eberg_spc@predicted@data[,1:2], pts=eberg_spc@predicted@data[units,], title = 'PCA Ebergotzen FSCS')+c
600+
601+
602+
summary_plot <- actual + SRS + LHS + FSCS + actual_hex + SRS_hex + LHS_hex + FSCS_hex+ plot_layout(ncol = 4, guides = "collect")
603+
604+
saveRDS(summary_plot, "./output/summary_plot.rds")
605+
606+
607+
```
608+
609+

sampling_functions.R

+19
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,22 @@ plot_hex <- function(df, pts,title=""){
180180

181181
}
182182

183+
184+
plot_hex4 <- function(df, pts,title=""){
185+
reds = RColorBrewer::brewer.pal(9, "YlOrRd")[-1]
186+
df = as.data.frame(df)
187+
pts= as.data.frame(pts)
188+
189+
ggplot(df, aes(x = PC1, y=PC2)) +
190+
stat_binhex(bins = 60)+
191+
#scale_fill_distiller(palette = "YlOrRd",direction = 1)+
192+
guides(fill = guide_coloursteps(show.limits = TRUE, title="Counts",barheight= grid::unit(4,"cm") ))+
193+
theme_minimal()+
194+
coord_equal()+
195+
geom_point(data=pts, aes(x = PC1, y=PC2), shape="+", size=3)+
196+
ggtitle(title)+
197+
binned_scale(aesthetics = "fill", scale_name = "custom",
198+
palette = ggplot2:::binned_pal(scales::manual_pal(values = reds)),
199+
guide = "bins", breaks = seq(0,800,100), show.limits = TRUE)
200+
201+
}

summary.Rmd

+9-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,14 @@ as the most advantageous sampling design for predictive mapping [@ma2020comparis
3131
Such sampling diagnostics / comparisons geographical vs feature space help us
3232
detect any possible problems before we start running ML.
3333

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%"}
35-
knitr::include_graphics("./img/Fig_summary_comparison_sampling_eberg.jpg")
34+
```{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%"}
35+
36+
library(patchwork)
37+
#knitr::include_graphics("./img/Fig_summary_comparison_sampling_eberg.jpg")
38+
39+
summary_plot <- readRDS("./output/summary_plot.rds")
40+
summary_plot
41+
3642
```
3743

3844
## Sampling in a new area
@@ -91,6 +97,7 @@ as this ensures unbiased derivation of population parameters. Here the book by
9197
[practical instructions](https://github.com/DickBrus/SpatialSamplingwithR) for a diversity of data types.
9298

9399
```{r, include=FALSE}
100+
94101
gc()
95102
#save.image.pigz(file="sampling_data.RData")
96103
```

0 commit comments

Comments
 (0)