TidyTuesday - Art History Data - Week 3, 2023

The @R4DScommunity welcomes you to week 3 of #TidyTuesday!


Art History

The data this week comes from the arthistory data package

This dataset contains data that was used for Holland Stam’s thesis work, titled Quantifying art historical narratives. The data was collected to assess the demographic representation of artists through editions of Janson’s History of Art and Gardner’s Art Through the Ages, two of the most popular art history textbooks used in the American education system. In this package specifically, both artist-level and work-level data was collected along with variables regarding the artists’ demographics and numeric metrics for describing how much space they or their work took up in each edition of each textbook.

This package contains three datasets:

  • worksjanson: Contains individual work-level data by edition of Gardner’s art history textbook from 1963 until 2011. For each work, there is information about the size of the work and text as displayed in the textbook as well as details about the work’s medium and year created. Demographic data about the artist is also included.
  • worksgardner: Contains individual work-level data by edition of Gardner’s art history textbook from 1926 until 2020. For each work, there is information about the size of the work as displayed in the textbook as well as the size of the accompanying descriptive text. Demographic data about the artist is also included.
  • artists: Contains various information about artists by edition of Gardner or Janson’s art history textbook from 1926 until 2020. Data includes demographic information, space occupied in the textbook, as well as presence in the MoMA and Whitney museums.

Acknowledging arthistory, citation

Lemus S, Stam H (2022). arthistory: Art History Textbook Data. GitHub - saralemus7/arthistory: Art History Textbook Artist and Artwork Data, Art History Textbook Data • arthistory.

Examples of analyses are included in Holland Stam's thesis in Quarto files.

Get the data here

# Get the Data

# Read in with tidytuesdayR package 
# Install from CRAN via: install.packages("tidytuesdayR")
# This loads the readme and all the datasets for the week of interest

# Either ISO-8601 date or year/week works!

tuesdata <- tidytuesdayR::tt_load('2023-01-17')
tuesdata <- tidytuesdayR::tt_load(2023, week = 03)

arthistory <- tuesdata$arthistory

# Or read in the data manually

artists <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2023/2023-01-17/artists.csv')

New to TidyTuesday?

Welcome to the weekly social data project in R. All are welcome!
TidyTuesday Guide - bit.ly/tidyreadme.
⬡ The event is organized by the R4DS Online Learning Community, join the slack community.
⬡ For the latest datasets, follow R4DS on Twitter , Mastodon, LinkedIn, or Posit Community #TidyTuesday (click the :bell: icon and choose Watching First Post).

Where should I share?

⬡ On Mastodon at #TidyTuesday.
⬡ On LinkedIn with the #TidyTuesday hashtag.
⬡ Reply in the Posit Community Post, below.
⬡ On twitter, with the hashtag #TidyTuesday

This topic was automatically closed 360 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.