Hi, i just want to learn how to use Rstudio in forecasting dengue. Can you help me? I want to plot data using time series and SARIMA model in R but i dont know how can i plot it. What should i do po?
Hi,
Looks like you have several options out there. Here is an example:
install.packages('forecast', dependencies = TRUE)
library(forecast)
library(ggplot2)
# Automatic ARIMA forecasts
WWWusage %>%
auto.arima() %>%
forecast(h=20) %>%
autoplot()
Source:
1 Like
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.