@Bryan I meant, are there plans to implement a mechanism similar to the “line
– multi_line
” pair, i.e. “scatter
– multi_scatter
(multi_point
)”? Or is it still planned to implement only the optional addition of points to multi_line
(like plot(x, y, "o-")
in terms of matplotlib).
For example, the multi_scatter
would be useful for boxplot. The bar
is created with patches
, whiskers – with multi_line
, and outliers – with multi_scatter
. All glyphes use the same source
(“list of list”) for xs
and ys
.