Skip to content

Instantly share code, notes, and snippets.

@davidefiocco
Last active March 25, 2018 17:27
Show Gist options
  • Save davidefiocco/7e1aaa38758e9c30fcc0c8f5b19ec213 to your computer and use it in GitHub Desktop.
Save davidefiocco/7e1aaa38758e9c30fcc0c8f5b19ec213 to your computer and use it in GitHub Desktop.
Get Wikipedia contributors for grammar-related edits from https://bigquery.cloud.google.com/
# One can check contributions/edits at
# https://en.wikipedia.org/w/index.php?limit=50&title=Special%3AContributions&contribs=user
# profile pages are at
# https://en.wikipedia.org/wiki/User:USERNAME
SELECT contributor_username, COUNT(id) AS counts
FROM [bigquery-public-data:samples.wikipedia]
WHERE comment LIKE '%grammar%'
GROUP BY contributor_username
ORDER BY counts DESC LIMIT 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment