Skip to contents

Summarise reviews per each analysis

Usage

summarise_reviews_per_analysis(review_data)

Arguments

review_data

A dataframe containing the variables dataset, response_id, and ReviewerId.

Value

A dataframe with the variables dataset, and the mean, sd, min, max of the number of times each analysis was reviewed

Examples

data(ManyEcoEvo)
ManyEcoEvo %>%
  ungroup() %>%
  select(data, -dataset) %>%
  unnest(data) %>%
  select(ends_with("_id"), id_col, dataset, review_data) %>%
  unnest(review_data) %>%
  summarise_reviews_per_analysis()
#> # A tibble: 2 × 5
#>   dataset     mean    sd   min   max
#>   <chr>      <dbl> <dbl> <int> <int>
#> 1 blue tit    3.86 0.773     2     6
#> 2 eucalyptus  4.03 0.880     2     6