Baselight

Museum Of Modern Art Collection

Title, artist, date, and medium of every artwork in the MoMA collection

@kaggle.momanyc_museum_collection

Loading...
Loading...

About this Dataset

Museum Of Modern Art Collection

Context

The Museum of Modern Art (MoMA) acquired its first artworks in 1929, the year it was established. Today, the Museum’s evolving collection contains almost 200,000 works from around the world spanning the last 150 years. The collection includes an ever-expanding range of visual expression, including painting, sculpture, printmaking, drawing, photography, architecture, design, film, and media and performance art.

Content

MoMA is committed to helping everyone understand, enjoy, and use our collection. The Museum’s website features 72,706 artworks from 20,956 artists. The artworks dataset contains 130,262 records, representing all of the works that have been accessioned into MoMA’s collection and cataloged in our database. It includes basic metadata for each work, including title, artist, date, medium, dimensions, and date acquired by the Museum. Some of these records have incomplete information and are noted as “not curator approved.” The artists dataset contains 15,091 records, representing all the artists who have work in MoMA's collection and have been cataloged in our database. It includes basic metadata for each artist, including name, nationality, gender, birth year, and death year.

Inspiration

Which artist has the most works in the museum collection or on display? What is the largest work of art in the collection? How many pieces in the collection were made during your birth year? What gift or donation is responsible for the most artwork in the collection?

Tables

Artists

@kaggle.momanyc_museum_collection.artists
  • 360.78 KB
  • 15091 rows
  • 6 columns
Loading...

CREATE TABLE artists (
  "artist_id" BIGINT,
  "name" VARCHAR,
  "nationality" VARCHAR,
  "gender" VARCHAR,
  "birth_year" DOUBLE,
  "death_year" DOUBLE
);

Artworks

@kaggle.momanyc_museum_collection.artworks
  • 7.84 MB
  • 130262 rows
  • 21 columns
Loading...

CREATE TABLE artworks (
  "artwork_id" BIGINT,
  "title" VARCHAR,
  "artist_id" VARCHAR,
  "name" VARCHAR,
  "date" VARCHAR,
  "medium" VARCHAR,
  "dimensions" VARCHAR,
  "acquisition_date" VARCHAR,
  "credit" VARCHAR,
  "catalogue" VARCHAR,
  "department" VARCHAR,
  "classification" VARCHAR,
  "object_number" VARCHAR,
  "diameter_cm" DOUBLE,
  "circumference_cm" DOUBLE,
  "height_cm" DOUBLE,
  "length_cm" DOUBLE,
  "width_cm" DOUBLE,
  "depth_cm" DOUBLE,
  "weight_kg" DOUBLE,
  "duration_s" DOUBLE
);

Share link

Anyone who has the link will be able to view this.