Тёмный

Moving Averages Explained - Time Series Data 

AIEngineering
Подписаться 76 тыс.
Просмотров 18 тыс.
50% 1

Опубликовано:

 

16 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@story_teller_1987
@story_teller_1987 3 года назад
Really good series about time series analysis. He knows deep about what he is teaching.
@subhasismishra5001
@subhasismishra5001 3 года назад
Hello Srivats. These videos are very lucid and simple. I am learning a lot from them. Thanks for taking the time and effort for doing so.
@dataflex4440
@dataflex4440 2 года назад
wow! Sir, Please continue making videos your videos are very high quality. Anyone can tell by watching you videos that this guys know stuff and your Coding style is Pro
@raviirla6014
@raviirla6014 3 года назад
Simply wow Srivatsan.. great content with good clarity of explanation.. even a school kid can understand your content sir with min knowledge.. Thank you soo much.
@jediyoda7338
@jediyoda7338 4 года назад
Excellent intro to a very basic time series algo. Hope you also cover methods like regression, LSTM and multi-step forecasting, also multiple sku forecasting etc.... Thanks for this video :)
@AIEngineeringLife
@AIEngineeringLife 4 года назад
Yes I do have plans on advanced model. Initially covering the foundational concepts and will follow other algos post that
@jediyoda7338
@jediyoda7338 4 года назад
Thanks and please continue the good work 👍
@deghanandreddy7168
@deghanandreddy7168 4 года назад
@@AIEngineeringLife please upload videos on daily basis so that we can get more knowledge this is just request from my side doing a great job to DS community!!!!!!!!!!!
@raghavagrawal6263
@raghavagrawal6263 2 года назад
Thank you sir for a great explanation with practicals. It will be great and easy for future doubt clearance if you provide the links for the dataset and Notebook in the video description.
@susantachary7456
@susantachary7456 4 года назад
Very thoroughly explained.
@vishakhabhattacharjee1063
@vishakhabhattacharjee1063 4 года назад
Great videos. Really enjoy going through these videos. A lot of the concepts from pandas and Matplotlib got revisited. However, I have a suggestion if you could post the links of the data in the description it would be a bit easy for the learners to access it. Thank You for the video. :)
@AIEngineeringLife
@AIEngineeringLife 4 года назад
Sure will do it going forward. Most of the datasets are in my git folder here - github.com/srivatsan88/RU-vidLI/tree/master/dataset Thank you and glad you liked the videos
@Abhishekb936
@Abhishekb936 4 года назад
Thank you Srivatsan sir.. Its really helpful..😊
@harshjoshi1603
@harshjoshi1603 3 года назад
Hello sir, I am really gaining so much knowledge from your videos, and thank you so much for making such an amazing channel. Just wondering for the 5 minutes(for a year) data what can be the suggestion for the moving average.
@nehag3688
@nehag3688 4 года назад
How do I make future forecast using EWM or other moving average techniques. Also Thank you sir for your thorough explanation
@AIEngineeringLife
@AIEngineeringLife 4 года назад
Neha.. If you see I am doing forecast for one time period. Now you can do recursive forecasting by taking the last forecasted value along with history and do next value and so on. ewm are good for short term forecasts where we might not except much sudden trend reversal
@sarathpuppala6148
@sarathpuppala6148 4 года назад
Thanks @Sri. Very elaborative.
@AIEngineeringLife
@AIEngineeringLife 4 года назад
Thanks Sarath
@maheshdalwani2357
@maheshdalwani2357 2 года назад
Awesome content.
@harish00784
@harish00784 2 года назад
Amazing explanation
@subhasismishra5001
@subhasismishra5001 3 года назад
I have a small comment (more of an errata). At time-stamp of 8:39, in this video you define the formula for Moving Average. I guess the denominator should be (n+1) instead of n.
@AIEngineeringLife
@AIEngineeringLife 3 года назад
Subhasis.. it is typically number of period n. You can check details here en.m.wikipedia.org/wiki/Moving_average#Simple_moving_average Said that there is no harm to do n+1 if data is volatile but in that case I might go for weighted averages
@subhasismishra5001
@subhasismishra5001 3 года назад
@@AIEngineeringLife ..Well! the denominator should depict the number of observations, which is what the definition of average entails. This is consistent in the link you shared too. Now in the video, you have observations at t, t-1, t-2,..,t-n. This is a total of (n+1) observations and thus, my comment that the denominator should be (n+1) and not 'n'.
@AIEngineeringLife
@AIEngineeringLife 3 года назад
@@subhasismishra5001 you are right. Problem was in the way I depicted my numerator. It must be ending with n-1 since I started with t0. Thanks for pointing it 👍
@subhasismishra5001
@subhasismishra5001 3 года назад
@@AIEngineeringLife YOu have done a fabulos job in putting so much effort in these modules. And I am sure most of us are grateful to you for the same. My intention was not to point out the error but just to put it as an errata. Did try to contact you over linkedin, but I was not able to ... Again, thanks for the efforts
@AIEngineeringLife
@AIEngineeringLife 3 года назад
@@subhasismishra5001 Thank you and no issues on pointing out as mistakes from my end might happen. It is good for one seeing the comments to know. Maybe I typed the formula in a hurry and did not look into details
@sakthiprakash9010
@sakthiprakash9010 4 года назад
nice explanation sir could you upload all the code in your git hub which will be useful for all to practice and get some ideas.
@AIEngineeringLife
@AIEngineeringLife 4 года назад
Here you go - github.com/srivatsan88/End-to-End-Time-Series/blob/master/Moving_Averages.ipynb
@dataflex4440
@dataflex4440 2 года назад
Adam optimizer ,Rms prop uses this concept
@Cricketpracticevideoarchive
@Cricketpracticevideoarchive 4 года назад
Simple moving average is just a Weighted moving average where weight = 1, what will happen if we keep the weight constant in WMA ?
@AIEngineeringLife
@AIEngineeringLife 4 года назад
If u keep it constant it will be like SMA but u will end up under weighting output if it does not equal to n. If it equals to n then it will be 1 and exactly SMA
@vashistnarayansingh5995
@vashistnarayansingh5995 4 года назад
What is the difference between moving averages methonds and smothing methods
@AIEngineeringLife
@AIEngineeringLife 4 года назад
In smoothing methods you are just controlling the variations between time steps whereas MAs treat every instance as same
@momodoubjallow2585
@momodoubjallow2585 3 года назад
for learning purpose i recreated the notebook and as i go down the playlist, i will as well gradually update the code. github.com/mbjallow6/data-science-projects
@AIEngineeringLife
@AIEngineeringLife 3 года назад
This is amazing. All the best
Далее
Time series decomposition and analysis Using Python
16:18
End to End Time Series Modeling using Auto ARIMA
27:45
What is Moving Average? 📈 [Explained]
6:38
Просмотров 50 тыс.
Time Series Talk : Moving Average Model
7:10
Просмотров 189 тыс.
Moving Average for Python in 6 mins
6:59
Просмотров 8 тыс.
Python Functions for Time Series Modeling and Analysis
23:13