■ theme_bw 함수에서 Black & White 테마를 사용하는 방법을 보여준다.
▶ 예제 코드 (R)
1 2 3 4 5 6 7 8 |
library(ggplot2) x = rnorm(100) y = rnorm(100) qplot(x, y) + theme_bw() |
■ theme_bw 함수에서 Black & White 테마를 사용하는 방법을 보여준다.
▶ 예제 코드 (R)
1 2 3 4 5 6 7 8 |
library(ggplot2) x = rnorm(100) y = rnorm(100) qplot(x, y) + theme_bw() |