Auto-Arima creates a straight line help





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}






up vote
2
down vote

favorite
1












I'm trying to create a forecast using autoarima with some data, but i always get a straight-line, can someone please help me? :)
This is what i've got so far



install.packages("forecast")
install.packages("scales")
library(forecast)
datos <-read.csv("C:/Users/sarit/Documents/SÉPTIMO CUATRI/iieg/dator.csv",header=T)
monto=datos$monto.XVI
montots<-ts(monto)
montots<-ts(monto,frequency = 12,start = c(2007,1), end = c(2018,8))
montots
plot(montots)
auto.arima(montots)
fit=arima(montots,order=c(0,1,0))
a=forecast(fit,h=5)
plot(forecast(fit,h=5))


So basically, with the autoarima function i get (0,1,0), and when i plot the forecast i get a straight line like this:
enter image description here



my data looks like thisenter image description here



thank you










share|cite|improve this question







New contributor




sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    up vote
    2
    down vote

    favorite
    1












    I'm trying to create a forecast using autoarima with some data, but i always get a straight-line, can someone please help me? :)
    This is what i've got so far



    install.packages("forecast")
    install.packages("scales")
    library(forecast)
    datos <-read.csv("C:/Users/sarit/Documents/SÉPTIMO CUATRI/iieg/dator.csv",header=T)
    monto=datos$monto.XVI
    montots<-ts(monto)
    montots<-ts(monto,frequency = 12,start = c(2007,1), end = c(2018,8))
    montots
    plot(montots)
    auto.arima(montots)
    fit=arima(montots,order=c(0,1,0))
    a=forecast(fit,h=5)
    plot(forecast(fit,h=5))


    So basically, with the autoarima function i get (0,1,0), and when i plot the forecast i get a straight line like this:
    enter image description here



    my data looks like thisenter image description here



    thank you










    share|cite|improve this question







    New contributor




    sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      I'm trying to create a forecast using autoarima with some data, but i always get a straight-line, can someone please help me? :)
      This is what i've got so far



      install.packages("forecast")
      install.packages("scales")
      library(forecast)
      datos <-read.csv("C:/Users/sarit/Documents/SÉPTIMO CUATRI/iieg/dator.csv",header=T)
      monto=datos$monto.XVI
      montots<-ts(monto)
      montots<-ts(monto,frequency = 12,start = c(2007,1), end = c(2018,8))
      montots
      plot(montots)
      auto.arima(montots)
      fit=arima(montots,order=c(0,1,0))
      a=forecast(fit,h=5)
      plot(forecast(fit,h=5))


      So basically, with the autoarima function i get (0,1,0), and when i plot the forecast i get a straight line like this:
      enter image description here



      my data looks like thisenter image description here



      thank you










      share|cite|improve this question







      New contributor




      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I'm trying to create a forecast using autoarima with some data, but i always get a straight-line, can someone please help me? :)
      This is what i've got so far



      install.packages("forecast")
      install.packages("scales")
      library(forecast)
      datos <-read.csv("C:/Users/sarit/Documents/SÉPTIMO CUATRI/iieg/dator.csv",header=T)
      monto=datos$monto.XVI
      montots<-ts(monto)
      montots<-ts(monto,frequency = 12,start = c(2007,1), end = c(2018,8))
      montots
      plot(montots)
      auto.arima(montots)
      fit=arima(montots,order=c(0,1,0))
      a=forecast(fit,h=5)
      plot(forecast(fit,h=5))


      So basically, with the autoarima function i get (0,1,0), and when i plot the forecast i get a straight line like this:
      enter image description here



      my data looks like thisenter image description here



      thank you







      r time-series forecasting arima prediction






      share|cite|improve this question







      New contributor




      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|cite|improve this question







      New contributor




      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|cite|improve this question




      share|cite|improve this question






      New contributor




      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked yesterday









      sarah lopez

      111




      111




      New contributor




      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      sarah lopez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          6
          down vote













          Note first of all that your plot does not come from a call to auto.arima(), but from one to arima(). There is a difference.



          By supplying order=c(0,1,0) to arima(), you tell it to fit a model of the following type:



          $$ y_t-y_{t-1} = epsilon_t, $$



          or



          $$ y_t=y_{t-1} + epsilon_t. $$



          That is, you believe that the increments over the last observation follow a normal distribution, $epsilon_tsim N(0,sigma^2)$.



          For your point forecast, forecast() will use the expected value for $epsilon_t$. Which is zero. So your next forecast is simply the last observation:



          $$ hat{y}_t=y_{t-1}. $$



          And this is iterated. You end up with a flat line.



          Try actually fitting using auto.arima(). However, your time series does not exhibit any obvious structure, like trend or seasonality. (Autoregressive or moving average behavior are harder to spot by eye.) In such a situation, a flat line may well be the best forecast: Is it unusual for the MEAN to outperform ARIMA?



          You may be interested in the excellent free online book Forecasting: Principles and Practice (2nd ed.) by Athanasopoulos & Hyndman.






          share|cite|improve this answer





















            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "65"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });






            sarah lopez is a new contributor. Be nice, and check out our Code of Conduct.










             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f377723%2fauto-arima-creates-a-straight-line-help%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            6
            down vote













            Note first of all that your plot does not come from a call to auto.arima(), but from one to arima(). There is a difference.



            By supplying order=c(0,1,0) to arima(), you tell it to fit a model of the following type:



            $$ y_t-y_{t-1} = epsilon_t, $$



            or



            $$ y_t=y_{t-1} + epsilon_t. $$



            That is, you believe that the increments over the last observation follow a normal distribution, $epsilon_tsim N(0,sigma^2)$.



            For your point forecast, forecast() will use the expected value for $epsilon_t$. Which is zero. So your next forecast is simply the last observation:



            $$ hat{y}_t=y_{t-1}. $$



            And this is iterated. You end up with a flat line.



            Try actually fitting using auto.arima(). However, your time series does not exhibit any obvious structure, like trend or seasonality. (Autoregressive or moving average behavior are harder to spot by eye.) In such a situation, a flat line may well be the best forecast: Is it unusual for the MEAN to outperform ARIMA?



            You may be interested in the excellent free online book Forecasting: Principles and Practice (2nd ed.) by Athanasopoulos & Hyndman.






            share|cite|improve this answer

























              up vote
              6
              down vote













              Note first of all that your plot does not come from a call to auto.arima(), but from one to arima(). There is a difference.



              By supplying order=c(0,1,0) to arima(), you tell it to fit a model of the following type:



              $$ y_t-y_{t-1} = epsilon_t, $$



              or



              $$ y_t=y_{t-1} + epsilon_t. $$



              That is, you believe that the increments over the last observation follow a normal distribution, $epsilon_tsim N(0,sigma^2)$.



              For your point forecast, forecast() will use the expected value for $epsilon_t$. Which is zero. So your next forecast is simply the last observation:



              $$ hat{y}_t=y_{t-1}. $$



              And this is iterated. You end up with a flat line.



              Try actually fitting using auto.arima(). However, your time series does not exhibit any obvious structure, like trend or seasonality. (Autoregressive or moving average behavior are harder to spot by eye.) In such a situation, a flat line may well be the best forecast: Is it unusual for the MEAN to outperform ARIMA?



              You may be interested in the excellent free online book Forecasting: Principles and Practice (2nd ed.) by Athanasopoulos & Hyndman.






              share|cite|improve this answer























                up vote
                6
                down vote










                up vote
                6
                down vote









                Note first of all that your plot does not come from a call to auto.arima(), but from one to arima(). There is a difference.



                By supplying order=c(0,1,0) to arima(), you tell it to fit a model of the following type:



                $$ y_t-y_{t-1} = epsilon_t, $$



                or



                $$ y_t=y_{t-1} + epsilon_t. $$



                That is, you believe that the increments over the last observation follow a normal distribution, $epsilon_tsim N(0,sigma^2)$.



                For your point forecast, forecast() will use the expected value for $epsilon_t$. Which is zero. So your next forecast is simply the last observation:



                $$ hat{y}_t=y_{t-1}. $$



                And this is iterated. You end up with a flat line.



                Try actually fitting using auto.arima(). However, your time series does not exhibit any obvious structure, like trend or seasonality. (Autoregressive or moving average behavior are harder to spot by eye.) In such a situation, a flat line may well be the best forecast: Is it unusual for the MEAN to outperform ARIMA?



                You may be interested in the excellent free online book Forecasting: Principles and Practice (2nd ed.) by Athanasopoulos & Hyndman.






                share|cite|improve this answer












                Note first of all that your plot does not come from a call to auto.arima(), but from one to arima(). There is a difference.



                By supplying order=c(0,1,0) to arima(), you tell it to fit a model of the following type:



                $$ y_t-y_{t-1} = epsilon_t, $$



                or



                $$ y_t=y_{t-1} + epsilon_t. $$



                That is, you believe that the increments over the last observation follow a normal distribution, $epsilon_tsim N(0,sigma^2)$.



                For your point forecast, forecast() will use the expected value for $epsilon_t$. Which is zero. So your next forecast is simply the last observation:



                $$ hat{y}_t=y_{t-1}. $$



                And this is iterated. You end up with a flat line.



                Try actually fitting using auto.arima(). However, your time series does not exhibit any obvious structure, like trend or seasonality. (Autoregressive or moving average behavior are harder to spot by eye.) In such a situation, a flat line may well be the best forecast: Is it unusual for the MEAN to outperform ARIMA?



                You may be interested in the excellent free online book Forecasting: Principles and Practice (2nd ed.) by Athanasopoulos & Hyndman.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered 23 hours ago









                Stephan Kolassa

                43k690157




                43k690157






















                    sarah lopez is a new contributor. Be nice, and check out our Code of Conduct.










                     

                    draft saved


                    draft discarded


















                    sarah lopez is a new contributor. Be nice, and check out our Code of Conduct.













                    sarah lopez is a new contributor. Be nice, and check out our Code of Conduct.












                    sarah lopez is a new contributor. Be nice, and check out our Code of Conduct.















                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f377723%2fauto-arima-creates-a-straight-line-help%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                    Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                    A Topological Invariant for $pi_3(U(n))$