diff --git a/src/07_occurrence_indicators_modelling.Rmd b/src/07_occurrence_indicators_modelling.Rmd index 6cf8e92f7..f930b9183 100644 --- a/src/07_occurrence_indicators_modelling.Rmd +++ b/src/07_occurrence_indicators_modelling.Rmd @@ -673,3 +673,19 @@ file = here::here( ) ) ``` + +## Plots + +We create a zip file with all generated plots: + +```{r create-zip-file} +folder_path <- here::here("data", "output", "GAM_outputs") +zip(zipfile = here::here("data", "output", "GAM_outputs", "plots.zip"), + files = list.files( + folder_path, + pattern = "png$", + full.names = FALSE, + recursive = FALSE +) +``` +