Skip to content

Commit

Permalink
Start comparison using b-cubed developed indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaCartuyvels1 committed Oct 31, 2024
1 parent 24dd663 commit 4d03d61
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions source/comp_indicators.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
title: "B-cubed indicators for cube vs structured data"
author: "Emma Cartuyvels, Ward Langeraert, Toon Van Daele"
date: "2024-10-31"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

```{r}
birdcube <- process_cube(birdcubeflanders_year,
cols_occurrences = "n")
birdcube
```

```{r}
obs_richness_map_birdcube <- obs_richness_map(birdcube,
cell_size = 1)
plot(obs_richness_map_birdcube)
```

```{r}
obs_richness_ts_birdcube <- obs_richness_ts(birdcube)
plot(obs_richness_ts_birdcube)
```


```{r}
total_occ_map_birdcube <- total_occ_map(birdcube)
plot(total_occ_map_birdcube)
```

```{r}
total_occ_ts_birdcube <- total_occ_ts(birdcube)
plot(total_occ_ts_birdcube)
```


```{r}
pielou_evenness_map_birdcube <- pielou_evenness_map(birdcube)
plot(pielou_evenness_map_birdcube)
```

```{r}
pielou_evenness_ts_birdcube <- pielou_evenness_ts(birdcube)
plot(pielou_evenness_ts_birdcube)
```

```{r}
pielou_evenness_map_birdcube <- pielou_evenness_map(birdcube)
plot(pielou_evenness_map_birdcube)
```

```{r}
pielou_evenness_ts_birdcube <- pielou_evenness_ts(birdcube)
plot(pielou_evenness_ts_birdcube)
```








```{r}
spec_range_map_birdcube <- spec_range_map(birdcube)
plot(spec_range_map_birdcube, species = "Luscinia svecica")
```

```{r}
spec_range_ts_birdcube <- spec_range_ts(birdcube)
plot(spec_range_ts_birdcube, species = "Luscinia svecica")
```




0 comments on commit 4d03d61

Please sign in to comment.