#--- diamonds example -----
install.packages("ggplot2")
library(ggplot2)
data(diamonds)
View(diamonds)
plot(diamonds$x, diamonds$y, col=diamonds$price)
plot(diamonds$x, diamonds$y, col=10*diamonds$price/max(diamonds$price))
plot(diamonds$x, diamonds$z, col=10*diamonds$price/max(diamonds$price))
plot(diamonds$x, diamonds$price , main="relationship between price and predictor x")
abline(lm(diamonds$price~diamonds$x), col="red", lwd=2)
cor(diamonds$price, diamonds$x)
text(2,5000, "cor = 0.8844352")
'R 데이터 분석' 카테고리의 다른 글
[SKK_DA1] 빅데이터 기술 보충 사항 (0) | 2017.05.15 |
---|---|
[SKK_DA1] scrpts plus (0) | 2017.05.15 |
R분석 : 데이터 수집 예제 (0) | 2017.02.08 |
단순선형회귀분석 연습 : 007 한기대 (0) | 2017.02.07 |
빅데이터 기획 : 분석 : 일정 (0) | 2017.02.06 |