Is ARIMA appropriate for time series prediction involving a mix of explanatory and independent variables?Underlying model for prediction using different prediction variablesTime series prediction using ARIMA vs LSTMFeature Selection, Machine learning and Time Series analysis, for large financial timeseriesSimple Time Series PredictionPredicting survival on Haberman's datasetIdeas for using polynomial regression for multivariate time series predictionpredicition for a specific monthTime Series Split on unequal number of samplesQualitative prediction based off data containing mixed qualitative and quantitative values?Time Series prediction for uneven data with some data provided

Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?

Why are prions in animal diets not destroyed by the digestive system?

What are the differences between credential stuffing and password spraying?

Big O Simplification Algebra

Why do money exchangers give different rates to different bills?

Did we get closer to another plane than we were supposed to, or was the pilot just protecting our delicate sensibilities?

Was Unix ever a single-user OS?

When does a player choose the creature benefiting from Amass?

Can't remove one character of space in my environment

Roll Dice to get a random number between 1 and 150

What does a yield inside a yield do?

Does this article imply that Turing-Computability is not the same as "effectively computable"?

How to give very negative feedback gracefully?

What word means "to make something obsolete"?

How did Arya get her dagger back from Sansa?

What was the state of the German rail system in 1944?

Junior developer struggles: how to communicate with management?

How can I get a job without pushing my family's income into a higher tax bracket?

Moving the subject of the sentence into a dangling participle

Why is `abs()` implemented differently?

My ID is expired, can I fly to the Bahamas with my passport?

Randomness of Python's random

How can I support myself financially as a 17 year old with a loan?

Why is B♯ higher than C♭ in 31-ET?



Is ARIMA appropriate for time series prediction involving a mix of explanatory and independent variables?


Underlying model for prediction using different prediction variablesTime series prediction using ARIMA vs LSTMFeature Selection, Machine learning and Time Series analysis, for large financial timeseriesSimple Time Series PredictionPredicting survival on Haberman's datasetIdeas for using polynomial regression for multivariate time series predictionpredicition for a specific monthTime Series Split on unequal number of samplesQualitative prediction based off data containing mixed qualitative and quantitative values?Time Series prediction for uneven data with some data provided













2












$begingroup$


I have a table with the following columns:



Date(Month,Year), Sold_Past_Month, Quantity_Available, Quantity_Shipping_In, Missed_Sales, Quantity_Needed



Quantity_Needed is the dependent variable that is numerical.



I want to predict Quantity_Needed and train a model using the columns mentioned above; however, I also want Quantity_Needed to train the model.



I have data from the past 5 years -> so I would have roughly 60 rows of data for one item.



Is it possible to use ARIMA for this?



If it is, what should I do next to build my model?










share|improve this question









$endgroup$











  • $begingroup$
    Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
    $endgroup$
    – Pedro Henrique Monforte
    Apr 9 at 23:39















2












$begingroup$


I have a table with the following columns:



Date(Month,Year), Sold_Past_Month, Quantity_Available, Quantity_Shipping_In, Missed_Sales, Quantity_Needed



Quantity_Needed is the dependent variable that is numerical.



I want to predict Quantity_Needed and train a model using the columns mentioned above; however, I also want Quantity_Needed to train the model.



I have data from the past 5 years -> so I would have roughly 60 rows of data for one item.



Is it possible to use ARIMA for this?



If it is, what should I do next to build my model?










share|improve this question









$endgroup$











  • $begingroup$
    Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
    $endgroup$
    – Pedro Henrique Monforte
    Apr 9 at 23:39













2












2








2


0



$begingroup$


I have a table with the following columns:



Date(Month,Year), Sold_Past_Month, Quantity_Available, Quantity_Shipping_In, Missed_Sales, Quantity_Needed



Quantity_Needed is the dependent variable that is numerical.



I want to predict Quantity_Needed and train a model using the columns mentioned above; however, I also want Quantity_Needed to train the model.



I have data from the past 5 years -> so I would have roughly 60 rows of data for one item.



Is it possible to use ARIMA for this?



If it is, what should I do next to build my model?










share|improve this question









$endgroup$




I have a table with the following columns:



Date(Month,Year), Sold_Past_Month, Quantity_Available, Quantity_Shipping_In, Missed_Sales, Quantity_Needed



Quantity_Needed is the dependent variable that is numerical.



I want to predict Quantity_Needed and train a model using the columns mentioned above; however, I also want Quantity_Needed to train the model.



I have data from the past 5 years -> so I would have roughly 60 rows of data for one item.



Is it possible to use ARIMA for this?



If it is, what should I do next to build my model?







machine-learning python r prediction






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 9 at 22:09









user9028381user9028381

111




111











  • $begingroup$
    Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
    $endgroup$
    – Pedro Henrique Monforte
    Apr 9 at 23:39
















  • $begingroup$
    Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
    $endgroup$
    – Pedro Henrique Monforte
    Apr 9 at 23:39















$begingroup$
Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
$endgroup$
– Pedro Henrique Monforte
Apr 9 at 23:39




$begingroup$
Hey! Welcome! Yes, ARIMA is actually constructed with time series in mind. If you are going to be successful is something you will only know if you try. You can go trough this tutorial for creating an ARIMA model with sklearn in Python.
$endgroup$
– Pedro Henrique Monforte
Apr 9 at 23:39










2 Answers
2






active

oldest

votes


















0












$begingroup$

The correct name of what you are looking for is: ARIMAX, the ARIMA model works without covariables, the X (exogenous variables) include the possibility of having other explanatory variables.



https://robjhyndman.com/hyndsight/arimax/






share|improve this answer









$endgroup$




















    0












    $begingroup$

    I am not sure about the nature of this problem because I see that even the independent variables are linked to their past values, if so and if you don’t have a test data set you can try VAR model.




    In a VAR model, each variable is a linear function of the past values
    of itself and the past values of all the other variables.




    Otherwise you can also use LSTMs.






    share|improve this answer









    $endgroup$













      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "557"
      ;
      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',
      autoActivateHeartbeat: false,
      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
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f49001%2fis-arima-appropriate-for-time-series-prediction-involving-a-mix-of-explanatory-a%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0












      $begingroup$

      The correct name of what you are looking for is: ARIMAX, the ARIMA model works without covariables, the X (exogenous variables) include the possibility of having other explanatory variables.



      https://robjhyndman.com/hyndsight/arimax/






      share|improve this answer









      $endgroup$

















        0












        $begingroup$

        The correct name of what you are looking for is: ARIMAX, the ARIMA model works without covariables, the X (exogenous variables) include the possibility of having other explanatory variables.



        https://robjhyndman.com/hyndsight/arimax/






        share|improve this answer









        $endgroup$















          0












          0








          0





          $begingroup$

          The correct name of what you are looking for is: ARIMAX, the ARIMA model works without covariables, the X (exogenous variables) include the possibility of having other explanatory variables.



          https://robjhyndman.com/hyndsight/arimax/






          share|improve this answer









          $endgroup$



          The correct name of what you are looking for is: ARIMAX, the ARIMA model works without covariables, the X (exogenous variables) include the possibility of having other explanatory variables.



          https://robjhyndman.com/hyndsight/arimax/







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Apr 11 at 15:34









          Juan Esteban de la CalleJuan Esteban de la Calle

          1,04322




          1,04322





















              0












              $begingroup$

              I am not sure about the nature of this problem because I see that even the independent variables are linked to their past values, if so and if you don’t have a test data set you can try VAR model.




              In a VAR model, each variable is a linear function of the past values
              of itself and the past values of all the other variables.




              Otherwise you can also use LSTMs.






              share|improve this answer









              $endgroup$

















                0












                $begingroup$

                I am not sure about the nature of this problem because I see that even the independent variables are linked to their past values, if so and if you don’t have a test data set you can try VAR model.




                In a VAR model, each variable is a linear function of the past values
                of itself and the past values of all the other variables.




                Otherwise you can also use LSTMs.






                share|improve this answer









                $endgroup$















                  0












                  0








                  0





                  $begingroup$

                  I am not sure about the nature of this problem because I see that even the independent variables are linked to their past values, if so and if you don’t have a test data set you can try VAR model.




                  In a VAR model, each variable is a linear function of the past values
                  of itself and the past values of all the other variables.




                  Otherwise you can also use LSTMs.






                  share|improve this answer









                  $endgroup$



                  I am not sure about the nature of this problem because I see that even the independent variables are linked to their past values, if so and if you don’t have a test data set you can try VAR model.




                  In a VAR model, each variable is a linear function of the past values
                  of itself and the past values of all the other variables.




                  Otherwise you can also use LSTMs.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 11 at 22:13









                  Cini09Cini09

                  166




                  166



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Data Science Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      Use MathJax to format equations. MathJax reference.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f49001%2fis-arima-appropriate-for-time-series-prediction-involving-a-mix-of-explanatory-a%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

                      Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

                      Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

                      Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High