The Collection Insights Dashboard aggregates and visualizes collection data so that museum leadership and curatorial staff have a snapshot view of trends and patterns wihtin a museum’s collecting history.
As organizations align acquisition activity with collecting priorities and mission objectives, data plays a pivotal role in this process. Quick access to meaningful information and metrics about the collection is needed to inform curatorial decisions. However, this data can often be out of reach when leadership and curators are faced with choices that impact the collection and its growth.
As a proof of concept for a highly-available, web-based application tool, the Collection Insights Dashboard surfaces and visualizes object-related information to empower effective and responsible collection stewardship.
Individual dashboard tiles present different aggregations of data to reveal patterns in the collection's growth and makeup. A Home Page presents data for the organization overall, while a Department Dashboard Page reveals metrics for the individual curatorial divisions.
Sample tiles:
- Count of objects acquired by year
- Count of objects by object type
- Count of objects by curatorial department
- Count of objects by place of origin
- React (18.3.1) application with Vite (5.4.1) frontend build tool, which leverages the Tremor (3.18.0) chart and dashboard library and Tailwind CSS (3.4.10) styling framework.
- The frontend calls the Art Institute of Chicago API for data. Currently, “collections” endpoints are utilized, and calls follow the standards as put forth by the AIC. Also, Elasticsearch is leveraged.
- To run a React Vite app, install Node.js on your system, which includes npm (Node Package Manager). Node.js version 20+ is required and can be downloaded here.
- From Github, clone the Collection Insights Dashboard source code on your system.
-
In the command line, navigate to the react-dashboard project, and enter
npm run dev
. -
Open a browser window, and navigate to the localhost url provided in the command line.
-
Eager to focus initial efforts on connecting and surfacing the data, I faced the challenge of designing a UX/UI dashboard from scratch. As a result, I researched and identified available libraries, and decided upon Tremor, which provides built-in chart and dashboard templates. This was a valuable design decsion that benefited the development process.
-
Early iterations of the site pulled back a list of artworks and applied calculations to artworks' properties to gather metrics. This approach proved cumbersome and was limited by pagination restrictions. Bucket aggregations provided a useful alternative, and the code was refactored to use aggregations. These updated queries, which follow Elasticsearch standards, provide low-impact retrieval of complete data sets spanning the entire collection.
-
Future work will include drilling down into specific years to provide a more granular look at the data. Also, cross-reference with exhibition metrics is another planned feature.