I have a Symbol matrix that could have 3 Symbols say :Ø,:F, :V
but sometimes have not all the symbols how to plot it with the same colors?
m = fill(:Ø, 10, 10)
heatmap(m,aspect_ratio=1,legend=:none,xticks=:none,
yticks=:none,framestyle=:none,color=[ :black, :red, :green ])
if I add other Symbol
m[:,2] .= :V
heatmap(m,aspect_ratio=1,legend=:none,xticks=:none,
yticks=:none,framestyle=:none,color=[ :black, :red, :green ])
Colors change, and with another one colors change again
m[:,1] .= :F
heatmap(m,aspect_ratio=1,legend=:none,xticks=:none,
yticks=:none,framestyle=:none,color=[ :black, :red, :green ])
how do I map Symbol to colors?