Skip to content

Commit 7703cdd

Browse files
authored
Prevent RColorBrewer::brewer.pal warning
`RColorBrewer::brewer.pal()` throws an (in this case) unnecessary warning if the output plot requires less than 2 colors. This is an easy fix, and does not change the workings of the code since `RColorBrewer::brewer.pal()` never returns less than three levels anywas: ``` > RColorBrewer::brewer.pal(2, "Set2") [1] "#66C2A5" "#FC8D62" "#8DA0CB" Warning message: In RColorBrewer::brewer.pal(2, "Set2") : minimal value for n is 3, returning requested palette with 3 different levels ```
1 parent a938bf5 commit 7703cdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/plotly_build.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ map_color <- function(traces, stroke = FALSE, title = "", colorway, na.color = "
785785
isOrdered <- all(vapply(color[isDiscrete], is.ordered, logical(1)))
786786
lvls <- getLevels(unlist(color[isDiscrete]))
787787
N <- length(lvls)
788-
pal <- palette %||% if (isOrdered) viridisLite::viridis(N) else RColorBrewer::brewer.pal(N, "Set2")
788+
pal <- palette %||% if (isOrdered) viridisLite::viridis(N) else RColorBrewer::brewer.pal(max(N, 3L), "Set2")
789789
colScale <- scales::col_factor(pal, levels = names(pal) %||% lvls, na.color = na.color)
790790
color_codes <- Map(function(x, y) toRGB(colScale(as.character(x)), y), color[isDiscrete], alphas[isDiscrete])
791791
traces[isDiscrete] <- Map(mapColor, traces[isDiscrete], color_codes)

0 commit comments

Comments
 (0)