This commit is contained in:
Lixun Zhang 2016-03-23 16:41:15 -04:00
Родитель 6eff93fa33
Коммит 7127f09f2a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ library("ggplot2")
head(Boston)
ggplot(Boston, aes(x=medv)) +
geom_histogram(binwidth=2) +
ggtitle("Histogram of Response Variable \n")
ggtitle("Histogram of Response Variable")
# Fit a model using medv as response and others as predictors.
lm1 <- lm(medv ~ ., data = Boston)