R/ggdeseason.R

Defines functions ggdeseason

Documented in ggdeseason

ggdeseason <- function(x) {
  if(!require(ggplot2)){install.packages("ggplot2"); library(ggplot2)}
  ggplot(x,aes(x=date, y= (observation - seasonal)))+
    geom_line()
}
brisneve/ggplottimeseries documentation built on May 7, 2019, 3:08 p.m.