我在scale_color_manual
中拥有所有相同值的图表。
我想避免这种情况,只需调用一次这样的函数:
theme(manual_colors = c("#000000", "#111111"))
有可能吗?
答案 0 :(得分:4)
我认为您可以通过屏蔽scale_colour_discrete
:
scale_colour_discrete <- function(...) {
scale_colour_manual(...,values=c("#000000","#111111"))
}