You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Chris 1497d68911 Renaming with uppercase of readme files to respect standard 2 years ago
..
audit Renaming with uppercase of readme files to respect standard 2 years ago
README.md Renaming with uppercase of readme files to respect standard 2 years ago

README.md

Exercise 1

The goal of this exercise is to learn to manipulate time series in Pandas.

  1. Create a Series named integer_series from 1st January 2010 to 31 December 2020. At each date is associated the number of days since 1st January 2010. It starts with 0.

  2. Using Pandas, compute a 7 days moving average. This transformation smooths the time series by removing small fluctuations. without for loop