Skip to content

Commit

Permalink
Add GBIF check presence, startende vanaf phyloseq object
Browse files Browse the repository at this point in the history
  • Loading branch information
slambrechts committed Feb 14, 2024
1 parent 4e9ea5c commit 462a315
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions source/rmarkdown/annelida_data_analyse.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,20 @@ glimpse(otu_table(physeq_rarefied) %>% as.data.frame %>% as_tibble())

## Taxonomie tabel


```{r verken-taxonomie-data}
glimpse(tax_table(physeq_rarefied) %>% as.data.frame %>% as_tibble())
```

```{r GBIF-check-presence}
species <- as.vector(tax_table(physeq)[, "species"])
species <- species[!grepl("_otu", species)]
species <- gsub("_", " ", species)
source("source/r/check_presence.R")
check_presence(species)
```

Unieke en gedeelde taxa per diepte:

```{r}
Expand Down Expand Up @@ -251,6 +261,7 @@ psadd::plot_krona(physeq_rarefied, "MBAG_Olig01_Annelida_rar_species_alle_stalen
```


```{r}
tidy_physeq_rarefied %>%
tidytacos::tacoplot_stack(x = Landgebruik_MBAG)
Expand Down

0 comments on commit 462a315

Please sign in to comment.