전체 글
-
-
ggplot() 함수로 산점도 작성하기R 2017. 10. 21. 12:55
ggplot(data = diamonds, aes(x = carat, y = price)) +geom_point(aes(col = cut), size = 2) + geom_smooth(method = "lm", col = "red", size = 1) + coord_cartesian(x = c(0, 6), y = c(0, 25000)) + labs(title = "Scatter Plot", subtitle = "Carat and Price", x = "Carat", y = "Price", caption = "diamonds data") + scale_color_brewer(palette = "Set1") + facet_grid( ~ cut) # 1. 레이어 준비 : x축에 carat, y축에 price ..
-
-
-
기본적인 Machine Learnnig 의 용어와 개념 설명DeepLearning 2017. 10. 11. 18:10
https://www.inflearn.com/course-status-2/