worksgardner {arthistory} | R Documentation |
Works of art from Gardner’s Art Through the Ages from 1926 until 2020
worksgardner
A data frame with 2,325 observations on 24 variables.
The name of a given artist in a given edition of Gardner's Art Through the Ages who has created a two-dimensional work after c. 1750.
The number of the edition of Gardner's Art Through the Ages.
The title of the work as listed in .Gardner's Art Through the Ages
The year of publication.
The page number of the figure of the image in the text.
A unique number assigned to each artist included in Gardner's Art Through the Ages 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 height in centimeters of the figure of the work in the book itself.
The width in centimeters of the figure of the work in the book itself.
The height in centimeters of the text written about a given work by a given artist in a given edition.
The width in centimeters of the text written about a given work by a given artist in a given edition.
The height in centimeters of the extra text written if the text of the work of an artist in not in a rectangular shape.
The width in centimeters of the extra text written if the text of the work of an artist in not in a rectangular shape.
The area in centimeters squared of a work in the text.
The area in centimeters squared written about a work in the text.
The extra area in centimeters squared written about a work if it is not rectangular in the text.
The total area in centimeters squared written about a given work.
The area of the work in centimeters squared plus the area of the text in centimeters squared given to a particular work.
The area in centimeters squared of a page in a given edition of Gardner's Art Through the Ages.
The total space in centimeters squared divided by the area of a page in a given edition.
The name of the book,Gardner's Art Through the Ages, but gardner for short.
Stam, H. (2022). Quantifying art historical narratives. doi: 10.7924/r4dn48h0w. Duke Research Data Repository.
library(ggplot2)
library(dplyr)
worksgardner %>%
filter(artist_name == "Pablo Picasso") %>%
ggplot(aes(x = publication_year)) +
geom_bar() +
labs(
title = "Count of Works by Pablo Picasso Through Editions of
Gardner's Art Through the Ages",
x = "Year",
y = "Number of Works by Picasso"
)