반응형
R기초; R 기초 - ggplot2 그래픽5 - 테마
library(ggplot2)
library(car)
str(Salaries)
ggplot(Salaries, aes(x=yrs.since.phd, y=salary, color=rank, shape=rank)) +
geom_point() +
facet_grid(. ~ sex) +
theme_gray()
?theme_gray
theme()
ggplot(Salaries, aes(x=rank, y=salary, fill=sex)) +
geom_boxplot() +
labs(title="Salary by Rank and Sex",
x="Rank", y="Salary") +
theme(plot.title=element_text(face="bold.italic", size=14, color="brown"))
library(lattice)
ggplot(singer, aes(x=voice.part, y=height)) +
geom_boxplot() +
labs(title="Height by voice part",
x = "Voice Part", y= "Height") +
mytheme
반응형
'공부 > R Programming' 카테고리의 다른 글
Week 01: Basics of R (0) | 2021.03.02 |
---|---|
R기초; R 기초 - ggplot2 그래픽6 - 그래프 배치 및 저장 (0) | 2021.01.24 |
R 기초 - ggplot2 그래픽4 - 그래프 옵션 (0) | 2021.01.24 |
R 기초 - ggplot2 그래픽3 - 집단별 그래프 (0) | 2021.01.24 |
R 기초; ggplot2 그래픽2 - geom 함수 옵션 (0) | 2021.01.24 |
댓글