Summarise reviews per each analysis
Source:R/summarise_review_data.R
summarise_reviews_per_analysis.Rd
Summarise reviews per each analysis
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