worksjanson {arthistory} | R Documentation |
Works of art from Janson's History of Art from 1963 until 2011
worksjanson
A data frame with 1,634 observations on 25 variables.
The name of a given artist in a given edition of Janson's Art Through the Ages who has created a two-dimensional work after c. 1750.
A unique number assigned to each artist included in Janson's History of Art that has created a two-dimensional work after c. 1750.
The nationaliity of the artist.
The gender of the artist.
The race of the artist.
The ethnicity of the artist.
The title of the work as listed in .Janson's History of Art
The number of the edition of Janson's History of Art.
The year of publication.
The number of the part in the text. In this case, every work is from part 4, "The Modern World."
The title of the chapter a given work is in.
The year the artist began creating the work.
The year the artist finished the work.
1 if the date of the work was labeled with a circa (around) and 0 if the date of the work was not labeled with a circa
The medium of the work.
The height in centimeters of the work in a given edition of Janson's History of Art
The width in centimeters of the work in a given edition of Janson's History of Art
The height of text in centimeters of the text written about the work in a given edition of Janson's History of Art
The width of text in centimeters of the text written about the work in a given edition of Janson's History of Art
The area in centimeters squared of the actual work itself.
The area in centimeter's squared of a given work in a given edition of Janson's History of Art
The area in centimeter's squared of the text of given work in a given edition of Janson's History of Art
The size of the actual work divided by the size of the work in the book
If the figure of the work in Janson's History of Art was in color, such is denoted by a 1, if the figure of the work is not in color, such is denoted by a 0.
The location of the work as catalogued in a given edition of Janson's History of Art.
Stam, H. (2022). Quantifying art historical narratives. doi: 10.7924/r4dn48h0w. Duke Research Data Repository.
library(ggplot2)
library(dplyr)
worksjanson %>%
filter(artist_name == "Pablo Picasso") %>%
ggplot(aes(x = publication_year)) +
geom_bar() +
labs(
title = "Count of Works by Pablo Picasso Through Editions of
Janson's History of Art",
x = "Year",
y = "Number of Works by Picasso"
)