and good night
I'm making a forecast chart with Highcharter but it looks like this:
And I would like to remove all those symbols of points, triangles and squares, but im not sure how I can do this I am a bit confused, since when doing the forecast with auto.arima the graph if it looks the way I want, that is:
The code im using is:
library(highcharter)
library(forecast)
df <- data.frame(data = rnorm(54, mean = 2000))
ts_data <- ts(data, start = 2017, frequency = 12)
modelo <- nnetar(ts_data, p=1,P=1,
size=1)
nnetforecast <- forecast(modelo, h = 12, PI = T)
hchart(nnetforecast)
And for the arima example:
hchart(forecast(auto.arima(ts_data)))
Thanks for the help