-
-
Notifications
You must be signed in to change notification settings - Fork 375
Closed
Labels
enhancementimproving existing functionalityimproving existing functionality
Description
l = CategoricalArray(repeat(["a", "c", "b"], 3))
levels!(l, ["a", "c", "b"])
c = [:red :blue :green]
scatter(rand(9), rand(9),
group=l, # I want "c" to go second
color=c) # I want "c" to be blueInstead, "c" should be second, and be blue:
scatter(rand(9), rand(9), primary=false, color=repeat(vec(c), 3))
for i in eachindex(levels(l))
scatter!([],[], label=levels(l)[i], color=c[i])
end
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementimproving existing functionalityimproving existing functionality

