You’ll learn to create “rolling” windows of a time series that move, or "roll" along with data, making it possible to summarize trends in the data across time, such as the average over success months of observations or the sum over several weeks of sales. Overall summary statistics, like mean, median, sum, maximum, and so on, do not always provide insight into how data changes over time, and rolling windows will allow you to compute statistics dynamically. In addition to rolling windows, you will also learn how to create expanding windows, which show how these summary statistics approach their final value.
Exercise 1: O que é uma janela móvel?Exercise 2: Funções de janela móvelExercise 3: Janelas deslizantes versus agregaçãoExercise 4: Aplicando funções a janelas rolantesExercise 5: Mínimo rolanteExercise 6: Aplicar em janela móvel com função personalizadaExercise 7: Janelas expansivasExercise 8: Janelas móveis versus janelas expansivasExercise 9: Soma em expansãoExercise 10: Média expansivaExercise 11: Parabéns!