Museum Objects Overview#

An overview of artefacts held in museums

Museum Object Collections by topic and precision#

Hide code cell source
title = alt.TitleParams('Museum Object Collections by topic and precision', anchor='middle')
alt.Chart(museum_artefacts_df).mark_bar().encode(
        alt.Color('institution:N').legend(orient="bottom", columns=4, titleOrient="left"),
    column='precision:O',
    x='artefact_count:Q',
    tooltip=['institution', 'artefact_count'],
    y='topic:N'
).properties(width=500).resolve_scale(x='independent').configure(numberFormat='.2s')

Museum object by cataloguing type#