SQL
x
SELECT
concat(month,'/',day,'/',year), access_method, sum(view_count)
FROM
wmf.pageview_hourly
WHERE
year = 2015
AND month = 8
AND agent_type = "user"
AND country = "Canada"
AND project = "en.wikipedia"
AND page_title = "Justin_Trudeau"
GROUP BY
year, month, day, access_method;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.