This is an example page taken from OxShef Charts - A guide to different visualisation options for visualising research data

Charts and Plots

Charts and plots are typically used for comparing datasets, plotting raw data or for visualising mathematical expressions. There are many, many different types of charts/plot that serve wildly different purposes.

For help choosing which chart to use you might consider using these resources:

We’ve chosen to split our charts up using a similar hierarchy to the FT’s Visual Vocabulary.

Comparison / Ranking / Magnitude

Barcharts [tutorial] are very flexible visualisations that allow viewers to quickly compare the relative magnitude/ranking of multiple categories of data. By using grouped or stacked barcharts it is also possible to compare subcategories within each category.
Required Data:
  • Categories: For instance, class of animal e.g. mammal or reptile
  • Values: For instance, number of animals of each class

Piecharts [tutorial] are useful visualisations for breaking down observations into a number of categories, the totals of which sum to 100% of the data. Piecharts are fairly widely panned as poor options for data with many categorisations, it is always possible to replace a piechart with a barchart.
Required Data:
  • Categories: For instance, species of animal e.g. human or iguana
  • Values: For instance, number of animals of each species

Correlation

Scatterplots [tutorial] are very simple visualisations that allow viewers to compare the correlation between two variables, typically between multiple groups of data. Scatterplots may also include trendlines for comparison purposes, however the inclusion of error bars complicates the chart sufficiently to be counted as a separate type of chart.
Required Data:
  • x coordinates: traditionally this is the independent variable, for instance the year a measurement is taken
  • y coordinates: traditionally this is the dependent variable, for instance the value of a measurement in a specific year

Distribution

We don’t currently have any tutorials for creating these types of charts, please consider making a pull request on GitHub.