How can I add specific colors by levels "Manager" and "Operator" to nodes ? (#3452FF and #FFC900)
I tried
org$Color <- org$Title
levels(org$Color) <- c("#3452FF", "#FFC900")
without success...
org <- data.frame(
Manager = c(
NA, "Ana", "Ana", "Bill", "Bill", "Bill", "Claudette", "Claudette", "Danny",
"Fred", "Fred", "Grace", "Larry", "Larry", "Nicholas", "Nicholas"
),
Employee = c(
"Ana", "Bill", "Larry", "Claudette", "Danny", "Erika", "Fred", "Grace",
"Henri", "Ida", "Joaquin", "Kate", "Mindy", "Nicholas", "Odette", "Peter"
),
Title = c(
"President", "VP Operations", "VP Finance", "Director", "Director", "Scientist",
"Manager", "Manager", "Manager", "Operator", "Operator", "Manager",
"Manager", "Manager", "Operator", "Operator"
)
)
org$Color <- org$Title
levels(org$Color) <- c("#3452FF", "#FFC900")
org$tooltip <- paste0(
org$Employee,
"<br>Title: ",
org$Title,
"<br><img src='https://source.unsplash.com/collection/385548/150x100'>"
)
collapsibleTreeNetwork(
org,
attribute = "Title",
fill = "Color",
nodeSize = "leafCount",
tooltipHtml = "tooltip"
)
According to the docs the
fill
parameter is:This means
Color
column needs to have one color per row.Mapping one color per job title
One way to map color to job title to create a
factor
(which I think you were getting at with your use oflevels()
). I'll use the Set1 palette fromRColorBrewer
for this example.This maps one color to each title as follows:
Then you can draw the plot in the same way:
Mapping just the Manager and Operator titles
Alternatively, it is not necessary to create a
factor
, so to just set the Manager and Operator colors and leave all othersNA
(which seems to be white by default), you can just assign the relevant color codes to theColor
column.