-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEvaluation_of_scenarios.R
612 lines (491 loc) · 24.4 KB
/
Evaluation_of_scenarios.R
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
#' # Evaluation of the scenarios
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# Packages
library(RColorBrewer)
library(plyr)
library(ggplot2)
#'
#' The truth is the same within each scenario.
#'
#' The default parameters are as follows:
#'
#' - simulation is conducted on a grid of 300*300
#' - environmental covariate coefficient of 1.2
#' - scale parameter kappa for matern covariance of 0.05
#' - variance parameter sigma2x of matern covariance of 2
#' - mean log intensity of point process of -1
#' - 150 structured samples
#' - probability of sampling strata rep(c(0.5, 0.3, 0.1, 0.05, 0.01),5)
#' - qsize of 1
#'
#'
#' ## Structured sample size scenario
#'
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# set up code and parameters for summaries
source('parallel_summary.R')
n_runs = 500
n_by = 4
n_tot = n_runs*n_by
files <- list.files(path = ".", pattern = "Sample_size")
# create a summary of all runs of this scenario
summary_scenario_sample_size <- as.data.frame(t(mapply(summary_wrapper, files,
MoreArgs = list(
summary = "summary", n_tot,
n_by), SIMPLIFY = T))) # transposed to look clearer
raw_scenario_sample_size <- mapply(summary_wrapper, files,
MoreArgs = list(summary = "raw", n_tot,
n_by), SIMPLIFY = F)
# summary table
row.names(summary_scenario_sample_size) <- str_sub(row.names(summary_scenario_sample_size), 13, -7)
# add new column of the number of samples
# need to remove the model name - can be tricky as different lengths
scenario_names <- unlist(row.names(summary_scenario_sample_size))
# model names need to be in set order so remove completely
model_names = c("unstructuredcov", "unstructured",
"structured",
"jointtwo",
"jointcov",
"joint")
# easiest in loop
for(i in 1:length(model_names)){
scenario_names <- str_replace(scenario_names, model_names[i], "")
}
summary_scenario_sample_size$Scenario <- as.numeric(scenario_names)
summary_scenario_sample_size[,1:9] <- unlist(summary_scenario_sample_size[,1:9]) # need to unlist to save
write.csv(summary_scenario_sample_size, "SummaryTable_samplesize.csv", row.names=T)
#' ### Table
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
summary_scenario_sample_size
#'
#' ### Figures
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# join all of the correlation estimates into a dataframe so can use ggplot
# do this from the raw data
plotting_data <- summary_plot_function(raw_scenario_sample_size, scenario = "Sample_size_", n_runs, type="summary")
# relevel model column
plotting_data$model <- factor(plotting_data$model, level = c("structured",
"unstructured",
"joint",
"unstructuredcov",
"jointcov",
"jointtwo"))
plotting_data$model <- revalue(plotting_data$model, c("unstructured" = "PO only (B)",
"unstructuredcov" = "PO with \nbias \ncovariate (D)",
"structured" = "PA only (A)",
"joint" = "IDM (C)",
"jointcov" = "IDM with \nbias \ncovariate (E)",
"jointtwo" = "IDM with \nsecond spatial \nfield (F)"))
plotting_data$scenario <- as.numeric(plotting_data$scenario)
# now plot
# set manual colours
manual_colours <- c("orange", "blue", "grey30", "darkblue", "grey50", "grey80")
# Plot at least 95% of the estimates for each scenario
y_correlation <- round(y_limits(plotting_data, "correlation"),2)
Correlation <- ggplot(plotting_data, aes(as.factor(scenario), correlation))+
scale_fill_manual(values=manual_colours, name = "")+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("PA sample size")+
ylab("Correlation between prediction and truth")+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))+
ylim(c(0,1))
Correlation
ggsave(filename = "CorrelationPlot_samplesize.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_env <- round(y_limits(plotting_data, "env"),2)
Environment <- ggplot(plotting_data, aes(as.factor(scenario), env))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
geom_hline(aes(yintercept = 2), linetype="dashed", color = "red")+
theme_classic()+
theme(legend.position = "none")+
xlab("PA sample size")+
ylab("Environmental covariate estimate")+
ylim(c(-0.2, 6))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment
ggsave(filename = "EnvironmentPlot_samplesize.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
# add an extra plot of width of credible intervals
y_width <- round(y_limits(plotting_data, "width"),2)
Environment_CI <- ggplot(plotting_data, aes(as.factor(scenario), width))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("PA sample size")+
ylab("Width of credible interval for environmental covariate")+
ylim(c(0,45))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment_CI
ggsave(filename = "EnvironmentPlotCI_samplesize.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_mae <- round(y_limits(plotting_data, "mae"),2)
MAE <- ggplot(plotting_data, aes(as.factor(scenario), mae))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("PA sample size")+
ylab("MAE")+
ylim(c(y_mae[1], 1.75))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
MAE
ggsave(filename = "MAEPlot_samplesize.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
#' ## Table of proportion of env estimate in CI
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# calculate the proportion of simulations where true environmental beta
# in credibility interval
prop_env_in_CI <- summary_plot_function(raw_scenario_sample_size, scenario = "Sample_size_", n_runs, type="CI")
cbind(row.names(summary_scenario_sample_size),prop_env_in_CI)
#' ## Correlation between bias and environment scenario
#'
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# set up code and parameters for summaries
source('parallel_summary.R')
n_runs = 500
n_by = 4
n_tot = n_runs*n_by
files <- list.files(path = ".", pattern = "Correlation_")
# create a summary of all runs of this scenario
summary_scenario_correlation <- as.data.frame(t(mapply(summary_wrapper, files,
MoreArgs = list(
summary = "summary", n_tot,
n_by), SIMPLIFY = T))) # transposed to look clearer
raw_scenario_correlation <- mapply(summary_wrapper, files,
MoreArgs = list(summary = "raw", n_tot,
n_by), SIMPLIFY = F)
# summary table
row.names(summary_scenario_correlation) <- str_sub(row.names(summary_scenario_correlation), 13, -11)
# add new column of the number of samples
# need to remove the model name - can be tricky as different lengths
scenario_names <- unlist(row.names(summary_scenario_correlation))
# model names need to be in set order so remove completely
model_names = c("unstructuredcov", "unstructured", "structured", "jointtwo", "jointcov", "joint")
# do not need a scenario here as all TRUE just need one FALSE to compare
# take sample size = 150 scenario
summary_scenario_correlation <- rbind(summary_scenario_correlation,
summary_scenario_sample_size[which(summary_scenario_sample_size$Scenario == 150)[c(1:3,5:6)],
1:9])
summary_scenario_correlation$Scenario <- c(rep("TRUE", 6), rep("FALSE", 5))
summary_scenario_correlation[,1:9] <- unlist(summary_scenario_correlation[,1:9]) # need to unlist to save
write.csv(summary_scenario_correlation, "SummaryTable_correlation.csv", row.names=T)
#' ### Table
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
summary_scenario_correlation
#'
#' ### Figures
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# join all of the correlation estimates into a dataframe so can use ggplot
# do this from the raw data
# need to add the sample size n = 150 raw results to this
raw_scenario_correlation <- c(raw_scenario_correlation, raw_scenario_sample_size[c(2,12,22,41,42)])
plotting_data <- summary_plot_function(raw_scenario_correlation, scenario = "Correlation_",
n_runs, type="summary")
# relevel model column
plotting_data$model <- factor(plotting_data$model, level = c("structured",
"unstructured",
"joint",
"unstructuredcov",
"jointcov", "jointtwo"))
plotting_data$model <- revalue(plotting_data$model, c("unstructured" = "PO only (B)",
"unstructuredcov" = "PO with \nbias \ncovariate (D)",
"structured" = "PA only (A)",
"joint" = "IDM (C)",
"jointcov" = "IDM with \nbias \ncovariate (E)",
"jointtwo" = "IDM with \nsecond spatial \nfield (F)"))
# now plot
# set manual colours
manual_colours <- c("orange", "blue", "grey30", "darkblue", "grey50", "grey80")
# Plot at least 95% of the estimates for each scenario
y_correlation <- round(y_limits(plotting_data, "correlation"),2)
Correlation <- ggplot(plotting_data, aes(as.factor(scenario), correlation))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Presence of correlation")+
ylab("Correlation between prediction and truth")+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))+
ylim(y_correlation)
Correlation
ggsave(filename = "CorrelationPlot_correlation.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_env <- round(y_limits(plotting_data, "env"),2)
Environment <- ggplot(plotting_data, aes(as.factor(scenario), env))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Presence of correlation")+
ylab("Environmental covariate estimate")+
ylim(c(0,7.5))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
geom_hline(aes(yintercept = 2), linetype="dashed", color = "red")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment
ggsave(filename = "EnvironmentPlot_correlation.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_width <- round(y_limits(plotting_data, "width"),2)
Environment_CI <- ggplot(plotting_data, aes(as.factor(scenario), width))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Presence of correlation")+
ylab("Width of credible interval for environmental covariate")+
ylim(y_width)+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment_CI
ggsave(filename = "EnvironmentPlotCI_correlation.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_mae <- round(y_limits(plotting_data, "mae"),2)
MAE <- ggplot(plotting_data, aes(as.factor(scenario), mae))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Presence of correlation")+
ylab("MAE")+
ylim(y_mae)+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
MAE
ggsave(filename = "MAEPlot_correlation.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
#' ## Table of proportion of env estimate in CI
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# calculate the proportion of simulations where true environmental beta
# in credibility interval
prop_env_in_CI <- summary_plot_function(raw_scenario_correlation, scenario = "Correlation_", n_runs, type="CI")
prop_env_in_CI
#' ## Bias scenario
#'
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# set up code and parameters for summaries
source('parallel_summary.R')
n_runs = 500
n_by = 4
n_tot = n_runs*n_by
files <- list.files(path = ".", pattern = "Bias_")
# create a summary of all runs of this scenario
summary_scenario_bias <- as.data.frame(t(mapply(summary_wrapper, files,
MoreArgs = list(
summary = "summary", n_tot,
n_by), SIMPLIFY = T))) # transposed to look clearer
raw_scenario_bias <- mapply(summary_wrapper, files,
MoreArgs = list(summary = "raw", n_tot,
n_by), SIMPLIFY = F)
# summary table
row.names(summary_scenario_bias) <- str_sub(row.names(summary_scenario_bias), 6, -7)
# add new column of the number of samples
# need to remove the model name - can be tricky as different lengths
scenario_names <- unlist(row.names(summary_scenario_bias))
# model names need to be in set order so remove completely
model_names = c("unstructuredcov", "unstructured", "structured", "jointtwo", "jointcov", "joint")
# easiest in loop
for(i in 1:length(model_names)){
scenario_names <- str_replace(scenario_names, model_names[i], "")
}
summary_scenario_bias$Scenario <- as.numeric(scenario_names)
summary_scenario_bias[,1:9] <- unlist(summary_scenario_bias[,1:9]) # need to unlist to save
write.csv(summary_scenario_bias, "SummaryTable_bias.csv", row.names=T)
#' ### Table
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
summary_scenario_bias
#'
#' ### Figures
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# join all of the correlation estimates into a dataframe so can use ggplot
# do this from the raw data
plotting_data <- summary_plot_function(raw_scenario_bias, scenario = "Bias_",
n_runs, type="summary")
# relevel model column
plotting_data$model <- factor(plotting_data$model, level = c("structured",
"unstructured",
"joint",
"unstructuredcov",
"jointcov", "jointtwo"))
plotting_data$model <- revalue(plotting_data$model, c("unstructured" = "PO only (B)",
"unstructuredcov" = "PO with \nbias \ncovariate (D)",
"structured" = "PA only (A)",
"joint" = "IDM (C)",
"jointcov" = "IDM with \nbias \ncovariate (E)",
"jointtwo" = "IDM with \nsecond spatial \nfield (F)"))
plotting_data$scenario <- sub("0","0.",plotting_data$scenario)
# now plot
# set manual colours
manual_colours <- c("orange", "blue", "grey30", "darkblue", "grey50", "grey80")
# Plot at least 95% of the estimates for each scenario
y_correlation <- round(y_limits(plotting_data, "correlation"),2)
Correlation <- ggplot(plotting_data, aes(as.factor(scenario), correlation))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Max detection probability in PO data")+
ylab("Correlation between prediction and truth")+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))+
ylim(y_correlation)
Correlation
ggsave(filename = "CorrelationPlot_bias.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_env <- round(y_limits(plotting_data, "env"),2)
Environment <- ggplot(plotting_data, aes(as.factor(scenario), env))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Maximum detection probability in PO data")+
ylab("Environmental covariate estimate")+
geom_hline(aes(yintercept = 2), linetype="dashed", color = "red")+
ylim(c(-1,7.5))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment
ggsave(filename = "EnvironmentPlot_bias.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_width <- round(y_limits(plotting_data, "width"),2)
Environment_CI <- ggplot(plotting_data, aes(as.factor(scenario), width))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Maximum detection probability in PO data")+
ylab("Width of credible interval for environmental covariate")+
ylim(c(0,35))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
Environment_CI
ggsave(filename = "EnvironmentPlotCI_bias.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_mae <- round(y_limits(plotting_data, "mae"),2)
MAE <- ggplot(plotting_data, aes(as.factor(scenario), mae))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Maximum detection probability in PO data")+
ylab("MAE")+
ylim(c(0,2))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
MAE
ggsave(filename = "MAEPlot_bias.png", plot=last_plot(),
width = 20, height = 10, units="cm", dpi=300)
y_biascov <- round(y_limits(plotting_data, "biascov"),2)
manual_colours <- c("darkblue", "grey50")
plotting_data_bias <- plotting_data[!is.na(plotting_data$biascov),]
plotting_data_bias$scenario <- sub("0","0.",plotting_data_bias$scenario)
biascov <- ggplot(plotting_data_bias, aes(as.factor(scenario), biascov))+
scale_fill_manual(values=manual_colours, name = "",
labels = c("PA only",
"PO only",
"IDM",
"PO with \nbias \ncovariate",
"IDM with \nbias \ncovariate",
"IDM with \nsecond spatial field"))+
geom_boxplot(aes(fill=as.factor(model)), outlier.shape=NA)+
theme_classic()+
theme(legend.position = "none")+
xlab("Maximum detection probability in PO data")+
ylab("Estimate of bias covariate")+
ylim(c(-5,6))+
facet_wrap(~as.factor(model), nrow=1, scales="free_x")+
theme(axis.text.x = element_text(angle = 90, hjust = 1))
biascov
ggsave(filename = "BiascovarPlot_bias.png", plot=last_plot(),
width = 10, height = 10, units="cm", dpi=300)
#' ## Table of proportion of env estimate in CI
#'
#+ warning = FALSE, message = FALSE, error = FALSE, include = TRUE, echo = FALSE
# calculate the proportion of simulations where true environmental beta
# in credibility interval
prop_env_in_CI <- summary_plot_function(raw_scenario_bias, scenario = "Bias_", n_runs, type="CI")
prop_env_in_CI
##Add plot for return of bias covariate