ACF and PACF of residuals to determine ARIMA model











up vote
3
down vote

favorite












I'm having trouble interpreting an ACF/PACF plot of the residuals of a regression to determine what the corresponding ARIMA model would be for the error term. This is the plot of the ACF/PACF of the regression. Since the ACF trails off at a lag of 4 and the PACF cuts off after a lag of 2, I believe it would be an ARIMA(4,0,2) model, but when I run the model the p-values are very low. When I run an ARIMA(4,0,0) model, the p values increase to a satisfactory amount. Am I interpreting these models correctly?



enter image description here










share|cite|improve this question







New contributor




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




















  • From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
    – Glen_b
    14 hours ago















up vote
3
down vote

favorite












I'm having trouble interpreting an ACF/PACF plot of the residuals of a regression to determine what the corresponding ARIMA model would be for the error term. This is the plot of the ACF/PACF of the regression. Since the ACF trails off at a lag of 4 and the PACF cuts off after a lag of 2, I believe it would be an ARIMA(4,0,2) model, but when I run the model the p-values are very low. When I run an ARIMA(4,0,0) model, the p values increase to a satisfactory amount. Am I interpreting these models correctly?



enter image description here










share|cite|improve this question







New contributor




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




















  • From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
    – Glen_b
    14 hours ago













up vote
3
down vote

favorite









up vote
3
down vote

favorite











I'm having trouble interpreting an ACF/PACF plot of the residuals of a regression to determine what the corresponding ARIMA model would be for the error term. This is the plot of the ACF/PACF of the regression. Since the ACF trails off at a lag of 4 and the PACF cuts off after a lag of 2, I believe it would be an ARIMA(4,0,2) model, but when I run the model the p-values are very low. When I run an ARIMA(4,0,0) model, the p values increase to a satisfactory amount. Am I interpreting these models correctly?



enter image description here










share|cite|improve this question







New contributor




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











I'm having trouble interpreting an ACF/PACF plot of the residuals of a regression to determine what the corresponding ARIMA model would be for the error term. This is the plot of the ACF/PACF of the regression. Since the ACF trails off at a lag of 4 and the PACF cuts off after a lag of 2, I believe it would be an ARIMA(4,0,2) model, but when I run the model the p-values are very low. When I run an ARIMA(4,0,0) model, the p values increase to a satisfactory amount. Am I interpreting these models correctly?



enter image description here







r arima






share|cite|improve this question







New contributor




Benjamin Krause 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




Benjamin Krause 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




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









asked 17 hours ago









Benjamin Krause

161




161




New contributor




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





New contributor





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






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












  • From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
    – Glen_b
    14 hours ago


















  • From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
    – Glen_b
    14 hours ago
















From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
– Glen_b
14 hours ago




From those plots I'd have thought an AR(2) (since the PACF is mostly small after lag 2). If it was ARMA(4,2) it wouldn't tend to look like that.
– Glen_b
14 hours ago










2 Answers
2






active

oldest

votes

















up vote
5
down vote













The thread Terms "cut off" and "tail off" about ACF, PACF functions on this forum will come in handy, Benjamin!



In looking at your plots, I see that the PACF cuts off after 2 lags and the ACF 'decays' towards zero.
As per the above thread, that would suggest an AR(2) process for the residuals from your initial regression model. In general, the 'decay' in the ACF can look like what you have in your plot (i.e., exponential decay) or have some sort of sinusoidal flavour, as seen in What does my ACF graph tell me about my data?, for instance.



If you work in R, you could try to fit an ARIMA process to your residuals using the auto.arima() function from the forecast package just to see how 'close' your guess (or mine) that the residuals follow an AR(p) process - where p = 4 in your guess or p = 2 in mine - would be to what auto.arima() comes with after automated selection of a time series model from the ARIMA class for the model residuals. Just use something like this:



install.packages("forecast")
require(forecast)

auto.arima(residuals(initialreg))


and see what comes out. Another thing to keep in mind is the length of your time series of regression residuals - if that series is not too long, you'll know upfront you won't be able to fit an AR model with too many parameters to it. In particular, you might be able yo fit an AR(1) or AR(2) model, but not an AR(4) or AR(5). The shorter the series, the less complex the AR model that it can support.



Of course, after you fit your AR(2) model to the regression residuals, you have to look at diagnostic plots of the AR(2) model residuals to make sure they look fine (i.e., like white noise).






share|cite|improve this answer




























    up vote
    -3
    down vote













    To review , auto.arima in a brute force list-based procedure that tries a fixed set of models and selects the calculated AIC based upon estimated parameters. The AIC should be calculated from residuals using models that control for intervention administration, otherwise the intervention effects are taken to be Gaussian noise, underestimating the actual model's autoregressive effect and thus miscalculating the model parameters which leads directly to an incorrect error sum of squares and ultimately an incorrect AIC and bad model identification. Most SE responders do not point out this assumption when they promote the auto.arima tool as they are unaware of this subtlety.



    Modern/Correct/Advanced ARIMA time series analysis is conducted by identifying a starting model and then iterating to refine the initially suggested model as implied by @isabella-ghement and then carefully examining the residuals for the existence of structure BOTH arima AND deterministic structure like pulses, level.step shifts, seasonal pulses and.or local time trends.



    As an example of a very bad model identification using auto.arima see https://www.omicsonline.org/open-access/an-implementation-of-the-mycielski-algorithm-as-a-predictor-in-r-2090-4541-1000195.php?aid=65324 .



    Furthermore your model residuals may still have an impact from lags of your predictor. Thus is often the case when your combined regression model + ARIMA structure + Identified Interventions has insufficient lag X structures.



    If you wish to post your data I will try and help further to give better guidance.






    share|cite|improve this answer

















    • 3




      I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
      – Isabella Ghement
      14 hours ago








    • 1




      This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
      – Chris Haug
      9 hours ago










    • I was alluding to @Isabelle's comment suggesting auto.arima as an approach
      – IrishStat
      8 hours ago










    • @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
      – IrishStat
      8 hours ago












    • ...................................................................
      – IrishStat
      8 hours ago













    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
    });


    }
    });






    Benjamin Krause 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%2f380966%2facf-and-pacf-of-residuals-to-determine-arima-model%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








    up vote
    5
    down vote













    The thread Terms "cut off" and "tail off" about ACF, PACF functions on this forum will come in handy, Benjamin!



    In looking at your plots, I see that the PACF cuts off after 2 lags and the ACF 'decays' towards zero.
    As per the above thread, that would suggest an AR(2) process for the residuals from your initial regression model. In general, the 'decay' in the ACF can look like what you have in your plot (i.e., exponential decay) or have some sort of sinusoidal flavour, as seen in What does my ACF graph tell me about my data?, for instance.



    If you work in R, you could try to fit an ARIMA process to your residuals using the auto.arima() function from the forecast package just to see how 'close' your guess (or mine) that the residuals follow an AR(p) process - where p = 4 in your guess or p = 2 in mine - would be to what auto.arima() comes with after automated selection of a time series model from the ARIMA class for the model residuals. Just use something like this:



    install.packages("forecast")
    require(forecast)

    auto.arima(residuals(initialreg))


    and see what comes out. Another thing to keep in mind is the length of your time series of regression residuals - if that series is not too long, you'll know upfront you won't be able to fit an AR model with too many parameters to it. In particular, you might be able yo fit an AR(1) or AR(2) model, but not an AR(4) or AR(5). The shorter the series, the less complex the AR model that it can support.



    Of course, after you fit your AR(2) model to the regression residuals, you have to look at diagnostic plots of the AR(2) model residuals to make sure they look fine (i.e., like white noise).






    share|cite|improve this answer

























      up vote
      5
      down vote













      The thread Terms "cut off" and "tail off" about ACF, PACF functions on this forum will come in handy, Benjamin!



      In looking at your plots, I see that the PACF cuts off after 2 lags and the ACF 'decays' towards zero.
      As per the above thread, that would suggest an AR(2) process for the residuals from your initial regression model. In general, the 'decay' in the ACF can look like what you have in your plot (i.e., exponential decay) or have some sort of sinusoidal flavour, as seen in What does my ACF graph tell me about my data?, for instance.



      If you work in R, you could try to fit an ARIMA process to your residuals using the auto.arima() function from the forecast package just to see how 'close' your guess (or mine) that the residuals follow an AR(p) process - where p = 4 in your guess or p = 2 in mine - would be to what auto.arima() comes with after automated selection of a time series model from the ARIMA class for the model residuals. Just use something like this:



      install.packages("forecast")
      require(forecast)

      auto.arima(residuals(initialreg))


      and see what comes out. Another thing to keep in mind is the length of your time series of regression residuals - if that series is not too long, you'll know upfront you won't be able to fit an AR model with too many parameters to it. In particular, you might be able yo fit an AR(1) or AR(2) model, but not an AR(4) or AR(5). The shorter the series, the less complex the AR model that it can support.



      Of course, after you fit your AR(2) model to the regression residuals, you have to look at diagnostic plots of the AR(2) model residuals to make sure they look fine (i.e., like white noise).






      share|cite|improve this answer























        up vote
        5
        down vote










        up vote
        5
        down vote









        The thread Terms "cut off" and "tail off" about ACF, PACF functions on this forum will come in handy, Benjamin!



        In looking at your plots, I see that the PACF cuts off after 2 lags and the ACF 'decays' towards zero.
        As per the above thread, that would suggest an AR(2) process for the residuals from your initial regression model. In general, the 'decay' in the ACF can look like what you have in your plot (i.e., exponential decay) or have some sort of sinusoidal flavour, as seen in What does my ACF graph tell me about my data?, for instance.



        If you work in R, you could try to fit an ARIMA process to your residuals using the auto.arima() function from the forecast package just to see how 'close' your guess (or mine) that the residuals follow an AR(p) process - where p = 4 in your guess or p = 2 in mine - would be to what auto.arima() comes with after automated selection of a time series model from the ARIMA class for the model residuals. Just use something like this:



        install.packages("forecast")
        require(forecast)

        auto.arima(residuals(initialreg))


        and see what comes out. Another thing to keep in mind is the length of your time series of regression residuals - if that series is not too long, you'll know upfront you won't be able to fit an AR model with too many parameters to it. In particular, you might be able yo fit an AR(1) or AR(2) model, but not an AR(4) or AR(5). The shorter the series, the less complex the AR model that it can support.



        Of course, after you fit your AR(2) model to the regression residuals, you have to look at diagnostic plots of the AR(2) model residuals to make sure they look fine (i.e., like white noise).






        share|cite|improve this answer












        The thread Terms "cut off" and "tail off" about ACF, PACF functions on this forum will come in handy, Benjamin!



        In looking at your plots, I see that the PACF cuts off after 2 lags and the ACF 'decays' towards zero.
        As per the above thread, that would suggest an AR(2) process for the residuals from your initial regression model. In general, the 'decay' in the ACF can look like what you have in your plot (i.e., exponential decay) or have some sort of sinusoidal flavour, as seen in What does my ACF graph tell me about my data?, for instance.



        If you work in R, you could try to fit an ARIMA process to your residuals using the auto.arima() function from the forecast package just to see how 'close' your guess (or mine) that the residuals follow an AR(p) process - where p = 4 in your guess or p = 2 in mine - would be to what auto.arima() comes with after automated selection of a time series model from the ARIMA class for the model residuals. Just use something like this:



        install.packages("forecast")
        require(forecast)

        auto.arima(residuals(initialreg))


        and see what comes out. Another thing to keep in mind is the length of your time series of regression residuals - if that series is not too long, you'll know upfront you won't be able to fit an AR model with too many parameters to it. In particular, you might be able yo fit an AR(1) or AR(2) model, but not an AR(4) or AR(5). The shorter the series, the less complex the AR model that it can support.



        Of course, after you fit your AR(2) model to the regression residuals, you have to look at diagnostic plots of the AR(2) model residuals to make sure they look fine (i.e., like white noise).







        share|cite|improve this answer












        share|cite|improve this answer



        share|cite|improve this answer










        answered 16 hours ago









        Isabella Ghement

        5,763320




        5,763320
























            up vote
            -3
            down vote













            To review , auto.arima in a brute force list-based procedure that tries a fixed set of models and selects the calculated AIC based upon estimated parameters. The AIC should be calculated from residuals using models that control for intervention administration, otherwise the intervention effects are taken to be Gaussian noise, underestimating the actual model's autoregressive effect and thus miscalculating the model parameters which leads directly to an incorrect error sum of squares and ultimately an incorrect AIC and bad model identification. Most SE responders do not point out this assumption when they promote the auto.arima tool as they are unaware of this subtlety.



            Modern/Correct/Advanced ARIMA time series analysis is conducted by identifying a starting model and then iterating to refine the initially suggested model as implied by @isabella-ghement and then carefully examining the residuals for the existence of structure BOTH arima AND deterministic structure like pulses, level.step shifts, seasonal pulses and.or local time trends.



            As an example of a very bad model identification using auto.arima see https://www.omicsonline.org/open-access/an-implementation-of-the-mycielski-algorithm-as-a-predictor-in-r-2090-4541-1000195.php?aid=65324 .



            Furthermore your model residuals may still have an impact from lags of your predictor. Thus is often the case when your combined regression model + ARIMA structure + Identified Interventions has insufficient lag X structures.



            If you wish to post your data I will try and help further to give better guidance.






            share|cite|improve this answer

















            • 3




              I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
              – Isabella Ghement
              14 hours ago








            • 1




              This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
              – Chris Haug
              9 hours ago










            • I was alluding to @Isabelle's comment suggesting auto.arima as an approach
              – IrishStat
              8 hours ago










            • @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
              – IrishStat
              8 hours ago












            • ...................................................................
              – IrishStat
              8 hours ago

















            up vote
            -3
            down vote













            To review , auto.arima in a brute force list-based procedure that tries a fixed set of models and selects the calculated AIC based upon estimated parameters. The AIC should be calculated from residuals using models that control for intervention administration, otherwise the intervention effects are taken to be Gaussian noise, underestimating the actual model's autoregressive effect and thus miscalculating the model parameters which leads directly to an incorrect error sum of squares and ultimately an incorrect AIC and bad model identification. Most SE responders do not point out this assumption when they promote the auto.arima tool as they are unaware of this subtlety.



            Modern/Correct/Advanced ARIMA time series analysis is conducted by identifying a starting model and then iterating to refine the initially suggested model as implied by @isabella-ghement and then carefully examining the residuals for the existence of structure BOTH arima AND deterministic structure like pulses, level.step shifts, seasonal pulses and.or local time trends.



            As an example of a very bad model identification using auto.arima see https://www.omicsonline.org/open-access/an-implementation-of-the-mycielski-algorithm-as-a-predictor-in-r-2090-4541-1000195.php?aid=65324 .



            Furthermore your model residuals may still have an impact from lags of your predictor. Thus is often the case when your combined regression model + ARIMA structure + Identified Interventions has insufficient lag X structures.



            If you wish to post your data I will try and help further to give better guidance.






            share|cite|improve this answer

















            • 3




              I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
              – Isabella Ghement
              14 hours ago








            • 1




              This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
              – Chris Haug
              9 hours ago










            • I was alluding to @Isabelle's comment suggesting auto.arima as an approach
              – IrishStat
              8 hours ago










            • @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
              – IrishStat
              8 hours ago












            • ...................................................................
              – IrishStat
              8 hours ago















            up vote
            -3
            down vote










            up vote
            -3
            down vote









            To review , auto.arima in a brute force list-based procedure that tries a fixed set of models and selects the calculated AIC based upon estimated parameters. The AIC should be calculated from residuals using models that control for intervention administration, otherwise the intervention effects are taken to be Gaussian noise, underestimating the actual model's autoregressive effect and thus miscalculating the model parameters which leads directly to an incorrect error sum of squares and ultimately an incorrect AIC and bad model identification. Most SE responders do not point out this assumption when they promote the auto.arima tool as they are unaware of this subtlety.



            Modern/Correct/Advanced ARIMA time series analysis is conducted by identifying a starting model and then iterating to refine the initially suggested model as implied by @isabella-ghement and then carefully examining the residuals for the existence of structure BOTH arima AND deterministic structure like pulses, level.step shifts, seasonal pulses and.or local time trends.



            As an example of a very bad model identification using auto.arima see https://www.omicsonline.org/open-access/an-implementation-of-the-mycielski-algorithm-as-a-predictor-in-r-2090-4541-1000195.php?aid=65324 .



            Furthermore your model residuals may still have an impact from lags of your predictor. Thus is often the case when your combined regression model + ARIMA structure + Identified Interventions has insufficient lag X structures.



            If you wish to post your data I will try and help further to give better guidance.






            share|cite|improve this answer












            To review , auto.arima in a brute force list-based procedure that tries a fixed set of models and selects the calculated AIC based upon estimated parameters. The AIC should be calculated from residuals using models that control for intervention administration, otherwise the intervention effects are taken to be Gaussian noise, underestimating the actual model's autoregressive effect and thus miscalculating the model parameters which leads directly to an incorrect error sum of squares and ultimately an incorrect AIC and bad model identification. Most SE responders do not point out this assumption when they promote the auto.arima tool as they are unaware of this subtlety.



            Modern/Correct/Advanced ARIMA time series analysis is conducted by identifying a starting model and then iterating to refine the initially suggested model as implied by @isabella-ghement and then carefully examining the residuals for the existence of structure BOTH arima AND deterministic structure like pulses, level.step shifts, seasonal pulses and.or local time trends.



            As an example of a very bad model identification using auto.arima see https://www.omicsonline.org/open-access/an-implementation-of-the-mycielski-algorithm-as-a-predictor-in-r-2090-4541-1000195.php?aid=65324 .



            Furthermore your model residuals may still have an impact from lags of your predictor. Thus is often the case when your combined regression model + ARIMA structure + Identified Interventions has insufficient lag X structures.



            If you wish to post your data I will try and help further to give better guidance.







            share|cite|improve this answer












            share|cite|improve this answer



            share|cite|improve this answer










            answered 15 hours ago









            IrishStat

            20.3k32040




            20.3k32040








            • 3




              I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
              – Isabella Ghement
              14 hours ago








            • 1




              This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
              – Chris Haug
              9 hours ago










            • I was alluding to @Isabelle's comment suggesting auto.arima as an approach
              – IrishStat
              8 hours ago










            • @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
              – IrishStat
              8 hours ago












            • ...................................................................
              – IrishStat
              8 hours ago
















            • 3




              I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
              – Isabella Ghement
              14 hours ago








            • 1




              This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
              – Chris Haug
              9 hours ago










            • I was alluding to @Isabelle's comment suggesting auto.arima as an approach
              – IrishStat
              8 hours ago










            • @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
              – IrishStat
              8 hours ago












            • ...................................................................
              – IrishStat
              8 hours ago










            3




            3




            I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
            – Isabella Ghement
            14 hours ago






            I guess we are as entitled to promote auto.arima() as you are entitled to promote Autobox in your answers. In a regression setting, you would hope that the systematic part of the model was formulated well enough to capture all systematic features present in the conditional mean response of the model. Personally, don't appreciate the digs you take at other responders on this forum.
            – Isabella Ghement
            14 hours ago






            1




            1




            This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
            – Chris Haug
            9 hours ago




            This isn't an answer to the question, which does not at any point mention forecast::auto.arima. Your offer of putting the author's data into your proprietary black box will also not help them understand what ACF/PACF charts mean in any way.
            – Chris Haug
            9 hours ago












            I was alluding to @Isabelle's comment suggesting auto.arima as an approach
            – IrishStat
            8 hours ago




            I was alluding to @Isabelle's comment suggesting auto.arima as an approach
            – IrishStat
            8 hours ago












            @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
            – IrishStat
            8 hours ago






            @isabella I was giving you a thumbs up in terms of iterating through model identification... apologies if you misunderstood that . just trying to help all in their pursuit of good time series models
            – IrishStat
            8 hours ago














            ...................................................................
            – IrishStat
            8 hours ago






            ...................................................................
            – IrishStat
            8 hours ago












            Benjamin Krause is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            Benjamin Krause is a new contributor. Be nice, and check out our Code of Conduct.













            Benjamin Krause is a new contributor. Be nice, and check out our Code of Conduct.












            Benjamin Krause is a new contributor. Be nice, and check out our Code of Conduct.
















            Thanks for contributing an answer to Cross Validated!


            • 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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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.


            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%2fstats.stackexchange.com%2fquestions%2f380966%2facf-and-pacf-of-residuals-to-determine-arima-model%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

            Morgemoulin

            Scott Moir

            Souastre