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: ¿Qué es una ventana móvil?Exercise 2: Funciones de ventana móvilExercise 3: Ventanas rodantes frente a agregaciónExercise 4: Aplicar funciones a ventanas móvilesExercise 5: Mínimo móvilExercise 6: Aplicación móvil con función personalizadaExercise 7: Ventanas en expansiónExercise 8: Ventanas móviles frente a ventanas expansivasExercise 9: Suma en expansiónExercise 10: Media en expansiónExercise 11: ¡Enhorabuena!