File:Origins of English Words.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 665 × 405 pixels, file size: 27 KB)

Captions

Captions

Add a one-line explanation of what this file represents

French is a Romance (Latin) language. This graph is very suspect without explaining itself further. Buyer beware

Summary[edit]

Description
English: This graph shows the origin of words in the English language. The data used is the same as File:Origins of English PieChart.svg, which is to say, it's drawn from data on AskOxford.com in 2007.
Date
Source Own work
Author Douglas Perkins

The SVG file was produced using MatPlotLib with the following (also Public Domain) code.

#!/usr/bin/env python

from matplotlib import pyplot
from matplotlib import ticker
from matplotlib import numpy

# This generates a pie graph showing the origins of words in the English language.
# The data was taken from AskOxford.com in 2007.
#
# https://commons.wikimedia.org/wiki/File:Origins_of_English_PieChart.svg

data = [
("Latin", 29),
("French", 29),
("Germanic", 26),
("Greek", 6),
("Unknown & Other", 6),
("From proper names", 4),
]

languages = [d[0] for d in data]
percents = [d[1] for d in data]

# Make a pie graph.
colors = ['yellow', 'lime', 'red', 'orange', 'cyan', 'magenta']
pyplot.figure(num=1, figsize=(9,5))
pyplot.axes(aspect=1)
pyplot.title('Origins of English Words')
pyplot.pie(percents, labels=languages, autopct='%1.f%%', colors=colors, pctdistance=0.8, startangle=-10)
pyplot.axis('equal')
pyplot.savefig('Origins of English Words.svg', format='svg', bbox_inches='tight')

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

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

Date/TimeThumbnailDimensionsUserComment
current10:43, 6 September 2015Thumbnail for version as of 10:43, 6 September 2015665 × 405 (27 KB)Douglaspperkins (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

Metadata