DRV

· R/R기초
# 인터렉티브 그래프#패키지 plotly : https://plot.ly/ggplot2/# 주식 변동 그래프 만들 때 주로 사용 : http://rstudio.github.io/dygraphs/ install.packages('plotly')library(plotly) # 배기량(displ), 구동방식(drv)과 고속도로 연비(hwy)와의 관계g = ggplot(data = mpg, mapping = aes(x = displ, y = hwy, color = drv)) + geom_point() # plotly::ggplotly(ggplot객체)ggplotly(g) # 그래프 상의 점이 가진 모든 정보를 보여줌 # 구동방식별 boxplotg = ggplot(data = mpg, mapping = aes(x..
Codezoy
'DRV' 태그의 글 목록