■ theme_set 함수에서 디폴트 테마를 설정하는 방법을 보여준다.
▶ 예제 코드 (R)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
library(ggplot2) x = rnorm(100) y = rnorm(100) 큰글꼴 = theme_bw(base_size = 30, base_family = 'serif') 이전테마 = theme_set(큰글꼴) qplot(x, y) theme_set(이전테마) |