Adding a :shape true pair alongside a :color true pair doesn't update the legend. The chart itself looks correct though.
(ns witan.scribble
(:require
;; Rdatasets -- standard datasets
[scicloj.metamorph.ml.rdatasets :as rdatasets]
;; Kindly -- notebook rendering protocol
[scicloj.kindly.v4.kind :as kind]
;; Plotje -- composable plotting
[scicloj.plotje.api :as pj]))
(-> (rdatasets/datasets-iris)
(pj/lay-point :species :sepal-width {:color :species
:shape :species}))
Adding a
:shape truepair alongside a:color truepair doesn't update the legend. The chart itself looks correct though.