Summarise Sorensen's Mean Index Estimates for a dataframe
Source:R/summarise_sorensen_index.R
summarise_sorensen_index_data.Rd
Summarises Sorensen's index estimates for a single dataframe of estimates
Arguments
- data
A dataframe containing
mean_diversity_index
for the Sorensen's index estimates for each analysisid_col
, for eachdataset
.
Examples
ManyEcoEvo_results %>%
filter(
exclusion_set == "complete",
publishable_subset == "All",
expertise_subset == "All"
) %>%
ungroup() %>%
select(dataset, diversity_indices) %>%
unnest(diversity_indices) %>%
summarise_sorensen_index_data()
#> # A tibble: 2 × 5
#> dataset mean sd min max
#> <chr> <dbl> <dbl> <dbl> <dbl>
#> 1 blue tit 0.591 0.0972 0.431 0.859
#> 2 eucalyptus 0.690 0.0839 0.548 0.982