Time Series | What is Stationarity and How to Find it in Time Series Data | #2

Поділитися
Вставка
  • Опубліковано 7 сер 2024
  • Next Video - • Time Series | How to M...
    Previous Video - • Time Series | Time Ser...
    This video will give you the comprehensive understanding about Stationarity in the data and will also help you to understand what are the different ways to find the Stationarity in the data.
    You may also like to watch -
    Time Series Playlist - • Time Series
    Pandas all in one - • Python Pandas Complete...
    Pandas Full Playlist - • Python Pandas Tutorial...
    Numpy Full Playlist - • NumPy
    Matplotlib Full Playlist- • Python Matplotlib Tuto...
    Seaborn Full Playlist - • Seaborn Beginner to Pr...
    Tags -
    Time Series Analysis,
    Time Series Modelling,
    Stationarity
    #DataScience #TimeSeries #PyhonProgramming #Python #learnerea
  • Наука та технологія

КОМЕНТАРІ • 10

  • @darellelee189
    @darellelee189 2 дні тому

    Thanks for the good sharing. Could you share the dataset and the code with us? Thanks.

  • @user-jh4wo6ok4s
    @user-jh4wo6ok4s Місяць тому

    Thank you sir!!! Very clear explanation. The other guys don't talk about the Test Stats should be less than the criticality values.

  • @huwjarse5761
    @huwjarse5761 10 місяців тому

    Thanks for the video - you mentioned you have a video on rolling, can you share the link please

    • @learnerea
      @learnerea  10 місяців тому

      here is the one for your purpose -
      ua-cam.com/video/qU3d8h2Lyiw/v-deo.htmlsi=d7ZuuNBz58aFWvMu

  • @debapriyosengupta2062
    @debapriyosengupta2062 10 місяців тому

    very well explained

    • @learnerea
      @learnerea  10 місяців тому

      Thanks for liking

  • @SaraJose-dq8kq
    @SaraJose-dq8kq 8 місяців тому +1

    in the line 188, you have given [0:4] for adfuller function.can you please explain why you have given that value.whats the reason behind that?

    • @MarcelSuleiman
      @MarcelSuleiman 7 місяців тому +1

      when you have a list, tuple, string etc in python (for example x = "SaraJose-dq8kq") and type `print(x[4:8])` you will get "Jose" or `print(x[9:])` ---> "dq8kq" etc... It's called "Slicing" ... that is why on line 188 author used `adfTest[0:4]` just to show you first 4 elements to be focusing on (not all)

    • @learnerea
      @learnerea  7 місяців тому

      Thank you Marcel!