Explore data with one line of code

Clusterfun is a python plotting library to explore images in your plots.
After installing clusterfun with pip install clusterfun, you can create the above plot locally, without any additional setup:
import pandas as pd
import clusterfun as clt

df = pd.read_csv("https://raw.githubusercontent.com/gietema/clusterfun-data/main/wiki-art.csv")
clt.scatter(df, x="x", y="y", media="img_path", color="painter")
Data can be hosted locally or on AWS S3.