search for: biasadj

Displaying 4 results from an estimated 4 matches for "biasadj".

2018 Jun 01
0
Time-series moving average question
...t;OONCancelled")) ,.Tsp = c(2016, 2018.25, 12), class = c("mts", "ts", "matrix")) head(dat3); nrow(dat3) TNR_moving_average <- forecast(ma(dat3[1:28], order=3), h=8) TNR_moving_average # Warning message: # In ets(object, lambda = lambda, biasadj = biasadj, allow.multiplicative.trend = allow.multiplicative.trend, : # Missing values encountered. Using longest contiguous portion of time series # > Point Forecast Lo 80 Hi 80 Lo 95 Hi 95 # 28 7007065.99688 6675015.72012 7339116.27...
2017 Oct 02
2
Default value of the option initial in the ses function in the forecast package.
Dear All, I am trying to use the function ses from the forecast package. >From its help I have : Usage: ses(y, h = 10, level = c(80, 95), fan = FALSE, initial = c("optimal", "simple"), alpha = NULL, lambda = NULL, biasadj = FALSE, x = y, ...) My query is that if I do not mention the initial value will its default value be "optimal". A MWE would be : library(fpp) oildata <- window(oil,start=1996,end=2007) fit3 <- ses(oildata, h=3) In the above is the default value of initial "optimal" o...
2018 Jun 01
2
Time-series moving average question
...,.Tsp = c(2016, 2018.25, 12), class = c("mts", "ts", "matrix")) head(dat3); nrow(dat3) TNR_moving_average <- forecast(ma(dat3[1:28], order=3), h=8) TNR_moving_average # Warning message: # In ets(object, lambda = lambda, biasadj = biasadj, allow.multiplicative.trend = allow.multiplicative.trend, : # Missing values encountered. Using longest contiguous portion of time series # > Point Forecast Lo 80 Hi 80 Lo 95 Hi 95 # 28 7007065.99688 6675015.7201...
2017 Oct 02
0
Default value of the option initial in the ses function in the forecast package.
...; > Dear All, > > I am trying to use the function ses from the forecast package. > > From its help I have : > > Usage: > > ses(y, h = 10, level = c(80, 95), fan = FALSE, initial = c("optimal", > "simple"), alpha = NULL, lambda = NULL, biasadj = FALSE, x = y, ...) > > My query is that if I do not mention the initial value will its default > value be "optimal". > > A MWE would be : > > library(fpp) > oildata <- window(oil,start=1996,end=2007) > fit3 <- ses(oildata, h=3) > > In the abov...