Say I have the following example code
using PlotlyJS
using CSV, DataFrames
df = dataset(DataFrame, "iris")
plot(
df, x=:sepal_width, y=:sepal_length, color=:species,
mode="markers"
)
How could I go about specifying the color for each group e.g. if I want setosa to be yellow instead?
It's exactly this Plotly-Express: How to fix the color mapping when setting color by column name but I need it in julia. I could not get the color_discrete_map to work...