Jochem Gietema

Results 4 comments of Jochem Gietema

Hi @piernikowyludek, thanks for the suggestion, that's definitely a useful one. clusterfun uses plotlyJS for rendering the plot in the frontend and I think they should have some options for...

@piernikowyludek I added a `color_is_categorical` boolean to the histogram, bar chart and scatter options. I thought about determining this automatically, similar to what you suggested, but I think it is...

Cannot reproduce this with ```python import clusterfun as clt import pandas as pd df = pd.DataFrame() df["img_path"] = ["https://clusterfun-test-bucket.s3.eu-west-2.amazonaws.com/file.jpeg"] clt.grid(df, media="img_path", show=True) ``` @hyenal any idea how to reproduce this...

Couldn't reproduce this with either ```python df = pd.read_csv("https://raw.githubusercontent.com/gietema/clusterfun-data/main/wiki-art.csv") output_dir = Path(__file__).parent.parent / "data" / "imgs" / "sub" output_dir.mkdir(parents=True, exist_ok=True) with open(output_dir / "file.png", "wb") as file: file.write(requests.get(df.iloc[0].img_path).content) with open(output_dir.parent...