Visualisations

Information Visualisation

The different endpoints offered by the API will return different “shapes” of data depending on what you have requested:

  • A single data point - e.g. returning a single object record

  • A small set of data points - e.g. returning a set of object records from a search

  • A large set of data points - e.g. returning all objects records from the collection

(N.B. As each object record can contain dozens of fields, each of those fields can itself be considered a data point, and clustering of that field across a set of records would then be a set of data points))

Single Records

A single object record will need to be examined individually, either by looking at the human readable object page on our collections site, or by processing in some way the full object record. There may be more useful ways to display this single object record within an environment such as Jupyter in some summary form, but to display the complete object record would effectively require recreating the existing object pages.

Small Sets of Object Records

A set of records returned from a response to a Searching or Filtering can be shown in a variety of graphical visualisations, using a library such as Altair. The type of graph used will depend on the data you are looking to show and what you would like to discover in the results. See some examples in quickstart:top and in our Data Explorations

Large Sets of Object Records

A larger number of records may be too difficult to show in a meaningful way in a single visualisation, so more abstracted visualisations may be used. In this case Introduction endpoints may be more useful to return summary statistics for a query (e.g. counts of different types of materials in use in objects matching on a query). This allows high-level exploration of a large number of records, which can then provide an indication of a smaller subset that might be useful to examine using other visualisation techniques.

Iconographic Visualisation

Images in responses can be usefully visualised at scale within Jupyter notebooks using Ivpy, which allows for the display and analysis of image sets using different layouts. See some worked examples of it in use with our API.