9
我有在scale_color_manual
中具有所有相同值的圖。 我想避免這種情況,只需要調用一次這樣的功能: theme(manual_colors = c("#000000", "#111111"))
如何避免始終調用scale_color_manual
這可能嗎?
我有在scale_color_manual
中具有所有相同值的圖。 我想避免這種情況,只需要調用一次這樣的功能: theme(manual_colors = c("#000000", "#111111"))
如何避免始終調用scale_color_manual
這可能嗎?
我想你可以通過屏蔽scale_colour_discrete
做到這一點:
scale_colour_discrete <- function(...) {
scale_colour_manual(...,values=c("#000000","#111111"))
}