Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaCartuyvels1 committed Sep 18, 2024
1 parent 2480a2e commit 8e6245c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/expl_analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,12 @@ comp_range_data |>
inner_join(abv_data_total |> distinct(species, category),
by = join_by(studied_spec == species)) |>
DT::datatable() |>
DT::formatRound(columns = "percentage_overlap", digits = 2)
DT::formatRound(columns = c("perc_abv_total_abv",
"perc_birdcube_total_abv",
"percentage_birdcube_spec_abv"), digits = 2)
```

This table shows the percentage of squares were the species was observed in both the cubes and the ABV monitoring compared to all squares where the species was observed during the ABV monitoring. Overall we see an overlap of `r sum(comp_range_data$overlap_abv_birdcube)/sum(comp_range_data$abv_squares)`.
This table shows the percentage of squares were the species was observed in both the cubes and the ABV monitoring compared to all squares where the species was observed during the ABV monitoring. Overall we see an overlap of `r sum(comp_range_data$percentage_birdcube_spec_abv)/sum(comp_range_data$abv_squares)`.

# 1. Trend Analysis
## Correlation of time series of species occurrences
Expand Down

0 comments on commit 8e6245c

Please sign in to comment.