반응형
R 기초; ggplot2 그래픽2 - geom 함수 옵션
library(ggplot2)
head(mtcars)
ggplot(data=mtcars, aes(x=wt, y=mpg)) +
geom_point() +
geom_smooth() +
labs(title="Fuel consumption vs weight",
x="Weight (1000 lbs)",
y="Fuel consumption (miles per gallon)")
?geom_point
?par
?colors()
?geom_smooth
?geom_text(
library(car)
str(Salaries)
ggplot(Salaries, aes(x=rank, y=salary)) +
geom_boxplot(fill="salmon", color="dimgray", notch=TRUE,
geom_point())
?geom_boxplot
?geom_point
?geom_rug
library(lattice)
head(singer)
ggplot(singer, aes(x=voice.part, y=height)) + geom_violin(fill="honeydew2") +
geom_boxplot(fill="lightgreen", width=0.2)
반응형
'공부 > R Programming' 카테고리의 다른 글
R 기초 - ggplot2 그래픽4 - 그래프 옵션 (0) | 2021.01.24 |
---|---|
R 기초 - ggplot2 그래픽3 - 집단별 그래프 (0) | 2021.01.24 |
R 기초; ggplot2 그래픽1 - 구조와 그래프 생성 (0) | 2021.01.24 |
R 기초 - 그래픽 - 그래프 요소 추가 (0) | 2021.01.24 |
R 기초; 그래픽 - 그래프 배치 (0) | 2021.01.24 |
댓글