R/plot.R

Defines functions plot.prophet_shf

#' @import ggplot2
#' @export
plot.prophet_shf <- function(x, ...) {
  ggplot(x$observed, aes_string("x", "value")) +
    geom_point() + geom_smooth(method = "loess", se = FALSE)
}
hoxo-m/prophetExt documentation built on Jan. 18, 2021, 11:12 a.m.