0
ggplot2의 scale_color_grey
과 scale_colour_grey
의 차이점은 무엇입니까?ggplot2의 scale_color_grey와 scale_colour_grey의 차이점
Color
및 Colour
은 ggplot2
에 여러 번 나타납니다. ggplot2
에 색상과 색상의 차이에 대한 일반적인 규칙이 있습니까?
ggplot2의 scale_color_grey
과 scale_colour_grey
의 차이점은 무엇입니까?ggplot2의 scale_color_grey와 scale_colour_grey의 차이점
Color
및 Colour
은 ggplot2
에 여러 번 나타납니다. ggplot2
에 색상과 색상의 차이에 대한 일반적인 규칙이 있습니까?
코드와 관련하여 차이가 없습니다. 영국 영어 대 미국 영어.
> scale_color_grey
function (..., start = 0.2, end = 0.8, na.value = "red")
{
discrete_scale("colour", "grey", grey_pal(start, end), na.value = na.value,
...)
}
: 모두 같은 함수를 호출
library(ggplot2)
identical(scale_colour_grey, scale_color_grey)
#[1] TRUE