Skip to content

Commit

Permalink
Committing knitting
Browse files Browse the repository at this point in the history
  • Loading branch information
amb26 committed Nov 11, 2024
1 parent 5ebf83e commit 2c83b1a
Show file tree
Hide file tree
Showing 2 changed files with 2,389 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Galiano BioBlitz 2023.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: "Galiano BioBlitz 2023 outcomes: vascular plants"
output: html_document
knit: (function(inputFile, encoding) {
rmarkdown::render(inputFile, encoding = encoding, output_dir = "docs") })
---

```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/loadData.R")
library(tidyverse)
records <- read.csv("tabular_data/Galiano_Island_vascular_plant_records_consolidated-prepared.csv")
summary <- read.csv("tabular_data/Galiano_Tracheophyta_review_summary_reviewed_2024-10-07-assigned_revised.csv")
new <- summary %>% filter(str_detect(Reporting.Status, "new"))
confirmed <- summary %>% filter(Reporting.Status == 'confirmed')
reported <- summary %>% filter(Reporting.Status == 'reported')
observed <- summary %>% filter(Observation == 'observed')
```

## Community science contributions

Through the combined efforts of `r length(unique(records$recordedBy))` individuals,
the Hunterston Farms naturalist community has now documented a total of `r nrow(summary)`
vascular plant species. Based on search efforts over the last
decade, `r round((nrow(confirmed)/(nrow(confirmed)+nrow(reported))*100), digits = 0)`
percent of the historically reported plant diversity has been confirmed and `r nrow(new)` new species
reports added to the list. Community members have now
documented `r round((nrow(observed)/(nrow(summary))*100), digits = 0)` percent of the
plant diversity known to the region on iNaturalist.

```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Plot_script.R")
reportingStatusFig
```

## Authors

Antranig Basman, Andrew Simon

November 11th, 2024

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
2,346 changes: 2,346 additions & 0 deletions docs/Galiano-BioBlitz-2023.html

Large diffs are not rendered by default.

0 comments on commit 2c83b1a

Please sign in to comment.