SARIMA Identification Models in R: Part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 พ.ย. 2024

ความคิดเห็น • 17

  • @lucasbandarkar
    @lucasbandarkar 3 ปีที่แล้ว +1

    Great video, outlining the steps at the beginning make what I'm learning in my time series class very clear

  • @emmaaye2620
    @emmaaye2620 2 ปีที่แล้ว

    Thank you so much. You make it clearer.

  • @javierromandiaz7108
    @javierromandiaz7108 2 ปีที่แล้ว +1

    Very clear. Thanks.

  • @fretzT_T
    @fretzT_T ปีที่แล้ว

    Is there way to calculate lambda for data having zeroes in it? Like rainfall data .

  • @mathfx5733
    @mathfx5733 ปีที่แล้ว

    What it means the lag parameter in diff() and what value should I use for?

  • @kumarashwarya2185
    @kumarashwarya2185 3 ปีที่แล้ว +1

    If we are running the analysis where we have weekly data, then how do we decide the lag in the diff() formula?

    • @MarioCastroPonce
      @MarioCastroPonce  3 ปีที่แล้ว

      If you see 7 day correlations in the ACF, then add the parameter lag=7 to diff ()

    • @kumarashwarya2185
      @kumarashwarya2185 3 ปีที่แล้ว

      @@MarioCastroPonce can you a share a link to study the concept?

  • @costaedetremo
    @costaedetremo ปีที่แล้ว

    what if lambda = -0.999 ?

  • @katerina8287
    @katerina8287 3 ปีที่แล้ว +1

    If there is unit root, is this method still valid?

    • @MarioCastroPonce
      @MarioCastroPonce  3 ปีที่แล้ว

      No. In that case, probably you would have to increase the order of the model.

  • @manglem10
    @manglem10 3 ปีที่แล้ว

    For annual data,what will be the frequency?? Here monthly data frequency is 12

    • @WinstonJarjury
      @WinstonJarjury 5 หลายเดือนก่อน

      It should be frequency=1, to be more clear, you always need ask you to yourself, How many months, (another period of time) is there in a year? And you get the answer

  • @kermdncer9981
    @kermdncer9981 2 ปีที่แล้ว

    Can we ARIMA and SARIMA be used at the same time?

    • @MarioCastroPonce
      @MarioCastroPonce  2 ปีที่แล้ว

      Well, I'd use sarima only If the data is expected to be seasonal. But in any case arima is a particular case of sarima if the coefficients of the seasonal part are zero

    • @kermdncer9981
      @kermdncer9981 2 ปีที่แล้ว

      @@MarioCastroPonce Thank you. Actually I wanted to say is it possible to use both together technically? Because only sarima is insufficient in my work.