Last updated: 2021-05-03

Checks: 7 0

Knit directory: booksn_dispersantes/

This reproducible R Markdown analysis was created with workflowr (version 1.6.2). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20210428) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version 7f6db02. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .Rhistory
    Ignored:    .Rproj.user/
    Ignored:    data/.DS_Store

Untracked files:
    Untracked:  analysis/temporal-beta-diveristy.Rmd
    Untracked:  data/passerine_abbrev.csv

Unstaged changes:
    Modified:   data/birds.csv
    Deleted:    data/data_raw/~$Aves_SN_meses_reproduccion.xlsx
    Modified:   data/passerine.csv
    Modified:   output/abundance_time/plot_all_cumbres.pdf
    Modified:   output/abundance_time/plot_all_enebral.pdf
    Modified:   output/abundance_time/plot_all_robledal.pdf
    Modified:   output/abundance_time/plot_selected_cumbres.pdf
    Modified:   output/abundance_time/plot_selected_enebral.pdf
    Modified:   output/abundance_time/plot_selected_robledal.pdf

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (analysis/explore-trends.Rmd) and HTML (docs/explore-trends.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
html ebba38c Antonio J Perez-Luque 2021-05-03 Build site.
Rmd ed171ab Antonio J Perez-Luque 2021-05-03 explore abundance plots over time

Summit environment

cumbres.plotall <- passerine.ab %>% 
  filter(habitat == "cumbres") %>% 
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 
  • Plot only the selected taxa (contacted in more than three years)
cumbres.plot <- passerine.ab %>% 
  filter(habitat == "cumbres") %>% 
  filter(stringr::str_detect(especie, "Card|Oena|Phoeni|collaris")) %>%
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme + 
  ggtitle("Summits")

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 

Juniper scrublands

enebral.plotall <- passerine.ab %>% 
  filter(habitat == "enebral") %>% 
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme +
  theme(axis.text.x = element_text(angle=90)) 

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 
  • Plot only the selected taxa (contacted in more than three years)
enebral.plot <- passerine.ab %>% 
  filter(habitat == "enebral") %>% 
  filter(stringr::str_detect(especie, 
                             "Alauda|Anthus|cannabina|Embe|Oena|Phoeni|collaris|rubicola|conspici|Troglo")) %>%
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie, nrow = 5) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme + 
  theme(axis.text.x = element_text(angle=90)) +  
  ggtitle("Juniper")

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 

Oak populations

robledal.plotall <- passerine.ab %>% 
  filter(habitat == "robledal") %>% 
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme +
  theme(axis.text.x = element_text(angle=90))   

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 
  • Plot only the selected taxa (contacted in more than three years)
robledal.plot <- passerine.ab %>% 
  filter(habitat == "robledal") %>% 
  filter(stringr::str_detect(especie, 
                             "Aeg|cannabina|Certhia|Cyanis|Erith|Fringi|Garrulus|Lopho|Lullula|Parus|Peripares|Phoeni|bonelli|Regulus|rubicola|serinus|Sitta|atricapilla|cantillans|merula|visci|Troglo")) %>%
  ggplot(aes(x=as.factor(year), y=ab_avg)) + 
  geom_errorbar(aes(ymin = ab_avg - se, 
                    ymax = ab_avg + se),
                width = 0.2) +
  geom_point() +
  facet_wrap(~especie, nrow = 5) + 
  ylab("abundance (ind / 10ha)") + xlab("") + 
  bird_theme + 
  theme(axis.text.x = element_text(angle=90)) +  
  ggtitle("Oak woodlands")

Version Author Date
ebba38c Antonio J Perez-Luque 2021-05-03
null device 
          1 

sessionInfo()
R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Catalina 10.15.3

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] plotly_4.9.3    here_1.0.1      forcats_0.5.1   stringr_1.4.0  
 [5] dplyr_1.0.4     purrr_0.3.4     readr_1.4.0     tidyr_1.1.2    
 [9] tibble_3.0.6    ggplot2_3.3.3   tidyverse_1.3.0 workflowr_1.6.2

loaded via a namespace (and not attached):
 [1] Rcpp_1.0.6        lubridate_1.7.10  assertthat_0.2.1  rprojroot_2.0.2  
 [5] digest_0.6.27     R6_2.5.0          cellranger_1.1.0  backports_1.2.1  
 [9] reprex_1.0.0      evaluate_0.14     highr_0.8         httr_1.4.2       
[13] pillar_1.4.7      rlang_0.4.10      lazyeval_0.2.2    readxl_1.3.1     
[17] rstudioapi_0.13   data.table_1.13.6 whisker_0.4       jquerylib_0.1.3  
[21] rmarkdown_2.6.6   labeling_0.4.2    htmlwidgets_1.5.3 munsell_0.5.0    
[25] broom_0.7.4       compiler_4.0.2    httpuv_1.5.5      modelr_0.1.8     
[29] xfun_0.20         pkgconfig_2.0.3   htmltools_0.5.1.1 tidyselect_1.1.0 
[33] viridisLite_0.3.0 crayon_1.4.1      dbplyr_2.1.0      withr_2.4.1      
[37] later_1.1.0.1     grid_4.0.2        jsonlite_1.7.2    gtable_0.3.0     
[41] lifecycle_1.0.0   DBI_1.1.1         git2r_0.28.0      magrittr_2.0.1   
[45] scales_1.1.1      cli_2.3.0         stringi_1.5.3     farver_2.0.3     
[49] fs_1.5.0          promises_1.2.0.1  xml2_1.3.2        bslib_0.2.4      
[53] ellipsis_0.3.1    generics_0.1.0    vctrs_0.3.6       tools_4.0.2      
[57] glue_1.4.2        hms_1.0.0         yaml_2.2.1        colorspace_2.0-0 
[61] rvest_0.3.6       knitr_1.31        haven_2.3.1       sass_0.3.1