Last active
March 25, 2018 17:27
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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