Skip to contents

Summarise number of analyst teams and total analyses per dataset

Usage

count_teams_analyses(data)

Arguments

data

A dataframe containing the variables TeamIdentifier and dataset

Value

A dataframe with the columns dataset, total_teams and total_analyses equal in number of rows to the number of unique values within the dataset variable of the input data.

Author

Hannah S. Fraser

Elliot Gould

Examples

ManyEcoEvo %>%
  filter(dataset == "blue tit") %>%
  ungroup() %>%
  select(data) %>%
  unnest(data) %>%
  count_teams_analyses()
#> Error in unnest(., data): could not find function "unnest"