Categories
Art Computing Art History Art Open Data Projects

Exploring Tate Art Open Data 2

This is the second in a series of posts examining Tate’s excellent collection dataset. You can read the first part here.The R and R Markdown code for this series is available at https://gitorious.org/robmyers/tate-data-r/ .

As before, let’s get started by loading the data.

source("../r/load_tate_data.r")

Movement Artwork Counts

Next let’s load some code to visualize the number of artworks in the collection categorized as being produced by a particular movement each year.

source("../r/movement_artwork_counts.r")

You can see the code in the Git repository above. It loads the Tate collection data files and declares some functions that we can use to plot movement artwork counts.

We can plot the number of artworks from a given movement, for example the Young British Artists (YBAs):

plotMovementFrequency("Young British Artists (YBA)")

YBAs
Or we can plot the combined counts for multiple movements, for example those since 1800:

plotArtworkCountsByYear()

Movements Since 1800
These figures are available as PDFs in the Git repository.

Movement Durations

When did a movement start and end, and how long did it last? We can plot this for movements as defined by the date of production of the artworks labelled as being part of that movement in the Tate collection.

source("../r/movement_durations.r")

First by movement name:

plotMovementDurations(movement.durations.alpha, movement.order.alpha)

Movements By Name

And then by movement start date:

plotMovementDurations(movement.durations.from, movement.order.from)

Movements By Start Date

These figures are also available as PDFs in the Git repository.

Movement Influences

We can use artists who are in two or more movements as links between movements, constructing a network graph of social connections between movements.
Like the Wikipedia data-based update of Alfred Barr’s handmade diagram for the MoMA Cubism & Abstract Art exhibition of 1936 Collectivizing The Barr Model we can extract a family tree (or Rhizome) of influence between art movements and otherwise use network analysis methods to study the social network of art movements:

plotMovementArtistLinks()

Movements Connected By ArtistsAgain, this figure is also available as PDFs in the Git repository.

Conclusions

As you can see some of these graphics work better as posters or large-scale PDFs than as bitmaps. There’s much that could be done with curve fitting and comparison of movement artwork counts. And all the techniques of social network analysis can be applied to the graph of artists and movements.

Next we’ll look at artwork genres, which are not explicitly labelled in the collection dataset.