지방이의 Data Science Lab

[R] x축 날짜 데이터 시각화 본문

Data Analysis/깨R지식

[R] x축 날짜 데이터 시각화

[지현] 2019. 12. 28. 16:34

https://www.r-graph-gallery.com/316-possible-inputs-for-the-dygraphs-library.html

 

An introduction to interactive time series with R and dygraphs

This post is an introduction to the dygraphs package for interactive time series visualization with R. It shows how to deal with various input formats, and what are the main chart types offered.

www.r-graph-gallery.com

위 사이트에 좋은 시각화 방법이 많다.  

내가 공부하다 찾은 좋은 방법중 하나는 인사이트가 보이는 구간에 하이라이트하는 것이다.

dyShading을 사용하면 된다.

 

temp$yearmonth = as.Date(ymd(paste0(temp$yearmonth,'01')))

건당 = cbind(temp[,c(2,6)],(temp1$sell_cnt))
names(건당)[3]='sell_cnt'

library(psycho) 

건당 = standardize(건당) 

temp$yearmonth = as.Date(ymd(paste0(temp$yearmonth,'01')))
don=xts( x=건당, order.by=temp$yearmonth)
dygraph(don) %>% dyShading(from="2017-11-01", to="2019-03-01", color="#eee6ff") %>%
  dyShading(from="2019-03-01",to='2019-11-01', color="#e6ffeb") 


Comments