File:US and UK enwiki views.png

From Meta, a Wikimedia project coordination wiki

US_and_UK_enwiki_views.png(551 × 455 pixels, file size: 32 KB, MIME type: image/png)

This is a file from the Wikimedia Commons. The description on its description page there is copied below.

Summary

Description
English: Monthly pageviews of the English Wikipedia from the US and UK, 2017 through early 2023
Date
Source Own work
Author Sandizer

Python code used to generate

import pandas as pd
import requests
import json
import matplotlib.pyplot as plt

api = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/top-by-country/en.wikipedia/all-access/'
headers = {'User-Agent': 'extracting about 75 statistics api calls'}

views = []
for date in pd.date_range(start='2017-01', end='2023-03', freq='MS'):
  resp = requests.get(api + date.strftime('%Y/%m'), headers=headers).text
  total = 0
  for country in json.loads(resp)['items'][0]['countries']:
    if country['country'] in ('US', 'UK'):
      total += country['views_ceil']
  views.append((date, total))

df = pd.DataFrame(views, columns=['month', 'billions'])
df = df.set_index('month')/1e9 # billions

df.plot(ylim=(0, None), title="Monthly US and UK English Wikipedia direct page views")
plt.show()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Captions

Monthly pageviews of the English Wikipedia from the US and UK

22 April 2023

image/png

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current17:52, 22 April 2023Thumbnail for version as of 17:52, 22 April 2023551 × 455 (32 KB)Sandizermonthly
14:14, 22 April 2023Thumbnail for version as of 14:14, 22 April 2023551 × 455 (31 KB)SandizerUploaded own work with UploadWizard

The following page uses this file:

Metadata