# Get the number of edits made by auto-confirmed editors to a page between
# revisions 384955912 and 406217369
get_history_count(
title="Jupiter",
type="editors",
from=384955912,
to=406217369,
failure_mode="quiet"
)
# Compare which authors have the most edit activity
authors <- tibble::tribble(
~author,
"Jane Austen",
"William Shakespeare",
"Emily Dickinson"
) %>%
dplyr::mutate(get_history_count(author, failure_mode="quiet"))
authors
Run the code above in your browser using DataLab