Grid

def grid(
    df: pd.DataFrame,
    media: str,
    ...
) -> Path:
Parameters
  • df: pd.DataFrame
    The dataframe with the data to plot
  • media: str
    The column name of the media to display
Example
import pandas as pd
import clusterfun as clt

df = pd.read_csv("https://raw.githubusercontent.com/gietema/clusterfun-data/main/wiki-art.csv")
clt.grid(df, media="img_path")