Top 100 editors per day by number of edits. Caution:
anonymous editors IPs are replaced by NA
.
wx_top_editors( project, editor_type = c("all", "anonymous", "user", "bot", "bot group"), page_type = c("all", "content", "non-content"), start_date = "20191231", end_date = "20200101" )
project | The name of any Wikimedia project formatted like
|
---|---|
editor_type | If you want to filter by editor-type, use one of "anonymous", "group-bot" (registered accounts belonging to the bot group), "name-bot" (registered accounts not belonging to the bot group but having bot-like names) or "user" (registered account not in bot group nor having bot-like name). If you are interested in edits regardless of their editor type, use "all-editor-types" (default). |
page_type | If you want to filter by page-type, use one of: "content" (edits made in content namespaces) or "non-content" (edits made in non-content namespaces). If you are interested in editors regardless of their page type, use "all" (default). |
start_date | The date of the first day to include, in YYYYMMDD format.
Can also be a |
end_date | The date of the last day to include, in YYYYMMDD format.
Can also be a |
A tibble data frame with the following columns:
project
project
date
Date
user_text
the editor's username; NA
if anonymous (instead of IP address)
edits
number of edits the user made on date
rank
the rank based on edits
Data retrieved from the API endpoint is available under the CC0 1.0 license.
Other data & metrics on users:
wx_active_editors()
,
wx_newly_registered_users()
if (FALSE) { wx_top_editors( "commons.wikimedia", editor_type = "bot", page_type = "content", start_date = "20191001", end_date = "20191031" ) }