Thank You very Much! I am new in using r and your video is very helpful for my project!
@eshwarphani5794 жыл бұрын
That was quick and best . you are the best mate . thanks a lot for this video.
@chrisogbekhiulu99233 жыл бұрын
Great videos and thanks for this. Could I check why moved on to forecasting when the p-value is < 0.05? Isn't that requirement key?
@nelsonmosioma5305 Жыл бұрын
A great explanation. Thank you.
@maryjoydenopol41582 жыл бұрын
Thanks!
@maryjoydenopol41582 жыл бұрын
hello, can we have some consultation with you?
@joeo55332 жыл бұрын
Hello, I'm assuming we interpret "s.e." to mean standard error, and for data sets that aren't small, we could calculate our 95% confidence intervals for our coefficients via s.e.*1.96. Is this correct?
@joeo55332 жыл бұрын
So this approximately right, but we can get R to calculate it by dropping our model into the confint() funtion. Like: y
@mssankar39683 жыл бұрын
Thank you! very helpful video! While I was trying to use the auto.arima function with seasonality on my data (fitarima
@nidhidhankhar8220 Жыл бұрын
What's the code for formulating the model of arima with drift Include.drift=true is not working. Is there any pre package we have to install to perform drift code
@leandanielvillareal33522 жыл бұрын
My problem with auto.arima() function is that sometimes, it chooses a model that residuals are still not white noise. Do you have an idea how it can be prevented? Thank you so much for this tutorial.
@footbaht64012 жыл бұрын
Thank you for your valuable tutorial! I just wanna ask if adding some dummy variables to account for those years with high inflation on top of the ARIMA model is a sensible choice to improve the model.
@parasnathverma14053 жыл бұрын
Sir, while forecasting my data set, it shows point forecast as 0 for all the next year. How to solve this issue. Please guide.
@allanmsiska21633 жыл бұрын
Say am trying to forecast alphas and betas for stocks, will the procedure be the same?
@nicoletabon7740 Жыл бұрын
does SARMA has a different code with ARMA or SARIMA? TIA!
@cesiacotache99614 жыл бұрын
Thank you! I really like your videos. May I ask you how could I manage 2 variables with auto.arima? Let's say I want to predict surgical deaths under the influence of COVID-19 incidence. I would like to make predictions for both in one graph, but "COVID-19 incidence" is my predictor variable and "surgical deaths" is my response variable. Thank you!
@JustinEloriaga4 жыл бұрын
Hi, thanks for your comment. To my knowledge, auto.arima() only accepts one variable to forecast at a time. If you would want to predict both simultaneously or with a certain response relationship, you might want to consider a multivariate forecasting model such as the VAR. Alternatively, if you are just after the forecast, I believe you can run auto.arima() on each variable separately and then just graph the forecast using some cbind() grouping. Hope this helps.
@cesiacotache99614 жыл бұрын
@@JustinEloriaga thank you! I will try as you recommended.
@chrisogbekhiulu99233 жыл бұрын
@@cesiacotache9961 This will be ARIMAX which allows you to add an external regressor. So you add your regressor in the "xreg" argument in arima () or auto.arima () functions in R.
@bobbybaylonjr74034 жыл бұрын
thank you. Hope you could share the file and the code. I tried accessing it, but it returns an error message
@tansutazegul8297 Жыл бұрын
Why Didnt you check whether the data is stationary?