![]() | This help page is a how-to guide. It explains concepts or processes used by the Wikipedia community. It is not one of Wikipedia's policies or guidelines, and may reflect varying levels of consensus. |
A graph or chart is a diagrammatical illustration of a set of data. If the graph is uploaded as an image file, it can be placed within articles just like any other image. This how-to guide describes how to create graphs using Wikipedia templates and extensions. For information on graph design and external software, see Wikipedia:How to create graphs for Wikipedia articles.
Graphs must be accurate and convey information efficiently. They should be viewable at different computer screen resolutions. Ideally, graphs will also be aesthetically pleasing.
Accuracy
editGraphs that show a trend of data should illustrate the trend accurately in its context, rather than illustrating the trend in an exaggerated or sensationalized way. In short, don't draw misleading graphs.
Choose a type of graph that is appropriate for the data you are illustrating.
Creating graphs for Wikipedia
editUsing simple Wikipedia templates
editTimeline
editA variety of templates and styles are available to create timelines.
- The {{Graphical timeline}} template allows representations of extensive timelines. The template offers complex formatting and labeling options to control the output. Typically, each use is made into its own template, and the template is then transcluded into the article. See a geological timeline template example, and an example of it being used in an article.
- The use of fixed images, such as File:Narnia Timeline.svg, was common in the past. However, these are difficult or impossible to adjust later, so this approach is frequently not the best option.
Single statistic
edit70 / 100
{{Composition bar}} can be used to provide a single statistic. This example shows 70% (70 out of 100), but the template is flexible and can show any positive integer out of any (equal or larger) integer. The template is 100 pixels wide, so the results are rounded to 1%.
To use this, copy the above and replace the values ("70" and "100" in the middle line) with your data. The color can also be changed. If you want to present multiple statistics, you can stack multiple copies of the template inside the first cell of the table.
Pie chart
edit- One (40.0%)
- Two (32.0%)
- Three (12.0%)
- Four (9.00%)
- Other (7.00%)
{{Pie chart}} is an graph-drawing template that produces a pie chart in the article. When making a pie chart, ensure that the segments are ordered by size (largest to smallest). Setting the other
parameter to yes
will pad the chart so that the values total to 100.
This example was created by typing the following code:
{{Pie chart
|other = yes
|value1 = 40
|label1 = One
|value2 = 32
|label2 = Two
|value3 = 12
|label3 = Three
|value4 = 9
|label4 = Four}}
Horizontal bar graph
editBar chart
edit{{Bar chart}} is a template that displays the data as a horizontal bar chart. The width of the graph can be changed.
Country | Predicted median age at death |
---|---|
China | |
India | |
USA | |
Indonesia | |
Brazil |
Bar box
edit{{Bar box}} is a template that displays the data as a horizontal bar chart. The width of the chart can be changed, but care must be taken to make sure the bars stay within the box on many browsers.
Stacked bar
edit{{Stacked bar}} is a template that displays data as a single bar of a stacked bar chart. The template supports up to 12 segments in their proportional lengths compared to a total, along with captions for each section. Care must be taken that the captions do not overlap excessively in smaller resolutions, and in many cases you may not be able to include captions if the segment(s) is too small.
- Number of video game articles in the 1970s and earlier by year
<1970s
71
72
73
74
1975
1976
1977
1978
1979
|
Vertical bar graph
editModule:Chart is a Lua module that may be used to create several different types of vertical bar graphs.
A standard vertical bar graph
10
20
30
40
50
60
Before
During
After
Post mortem
- Apple
- Banana
- Orange
A stacked vertical bar graph
25
50
75
100
125
150
Before
During
After
Post mortem
- Apple
- Banana
- Orange
Brick chart
editCauses of death
Cardiovascular diseases - 29 %
Cancer - 13 %
Respiratory disease - 7 %
Unintentional injuries - 6 %
Uncertain - 0.2 %
Other - 21.8 %
{{Brick chart}} is a simple block-oriented chart template. It's also called a waffle chart and is used as an alternative to the pie chart when you want users to be able to precisely compare the size of different categories.
It assumes that everything must add up to total=100 (or specify), and fills in any missing amounts with "other". You can label (and optionally choose colors for) each item, and the labels can be wikilinks to relevant articles. Decimal amounts are supported (tiny amounts will appear as slivers).
Using the Wikimedia Chart extension (advanced)
editBefore 2023, Wikipedia used a graph-making tool called Vega. You could use it to make charts and maps. This was disabled due to security issues, and replaced by mw:Extension:Chart.
Line charts
editThe old {{Graph:Chart}} implementation has been disabled. You can now make line graphs with the new Chart extension. This alternative works by storing the data on Commons in a json file, and storing the plot in another Commons page with json code. An example of such a data page is Commons:Data:Autobahn network length.tab, whereas Commons:Data:Autobahn network length.Line.chart contains the information about the plot. There is a preference on Commons that enables the TabularImportExport gadget to input simple csv and Excel files. It automatically converts it into the data json files. You can add the graph on Wikipedia with the following code:
{{Chart
| chart = Autobahn network length.Line.chart
}}
See or edit chart definition.
Area charts
editThe procedure is the same as above, but now the data is shown as an area chart:
{{Chart
| chart = Example.Area.chart
| caption = Some words to place under the graph
}}
Some words to place under the graph See or edit chart definition.
Colors
editThe default colors are created by Module:ChartColors. The basic 20 are:
If a chart plots 10 colors or fewer, then by default it uses every other one:
The colors can be manually set in a graph by adding them to the 'colors' parameter. For example, for two pie charts, the first of which is default and the second of which omits some colors in the first, you would manually enter your selections from the default 20:
- colors=#1f77b4,#aec7e8,#ff7f0e,#ffbb78,#2ca02c,#98df8a,#d62728,#ff9896,#9467bd,#c5b0d5,#8c564b,#c49c94,#e377c2,#f7b6d2,#7f7f7f,#c7c7c7,#bcbd22,#dbdb8d,#17becf,#9edae5
Similarly if one chart plotted fewer than 10 colors and you wanted it to use the same colors as another that had more than 10.
See also Template:ChartColors.
Methods outside Wikipedia
edit- Scalable Vector Graphics (SVG) is the recommended format.
- Module:Chart creates bar and pie charts on Wikipedia without need for external tools
- Many spreadsheet, drawing, and desktop publishing programs allow you to create graphs and export them as images.[1][2]
- gnuplot can produce a wide variety of charts and graphs; see samples with source code at Commons.
- In Python using matplotlib (examples)
- The R programming language can be used for creating Wikipedia graphs.
- The Google Chart API allows a variety of graphs to be created.
- Livegap Charts creates line, bar, spider, polar-area and pie charts, and can export them as images without needing to download any tools.
- Veusz is a free scientific graphing tool that can produce 2D and 3D plots. Users can use it as a module in Python.
- GeoGebra is open-source graphing calculator and is freely available for non-commercial users.
- WebPlotDigitizer, PlotDigitizer's online free app or SplineCloud's plot digitizer can be used to extract data from charts.
See also
edit- Wikipedia:How to create charts for Wikipedia articles
- Help:Barchart
- Help:Family trees
- Wikipedia:Collaboration to convert graphs to SVG
- Wikipedia:To scale charts
- Wikipedia:Images
- Wikipedia:Record charts
- Commons:Chart and graph resources
- Choose the color
- BrewerColorLegends
- mw:Extension:Graph/Interactive Graph Tutorial
- Wikipedia:WikiProject Data Visualization