-
ggplot2 패키지로 산점도 작성하기R 2017. 10. 22. 18:29
# 엑셀 파일에서 Ctrl + C한 데이터를 불러오기
baseball <- read.table("clipboard", header = TRUE)
# 산점도 작성하기
ggplot(data = baseball, aes(x = 타율, y = 방어율)) +
geom_point(col = "blue") +
geom_text(aes(label = 팀), size = 4, data = baseball) +
geom_smooth(method = "lm") +
labs(title = "산점도",
subtitle = "타율과 방어율",
x = "타율",
y = "방어율",
caption = "2017년 한국야구 데이터")'R' 카테고리의 다른 글
ggplot2의 Layers (0) 2017.10.27 Marginal Histogram / Boxplot (0) 2017.10.22 ggplot() 함수로 산점도 작성하기 (0) 2017.10.21 R데이터를 엑셀(excel) 데이터로 저장하기 (0) 2017.09.25 RStudio에서 할당 연산자인 <-의 단축키 (0) 2017.09.20