Resampling - p.9 Data Analysis with Python and Pandas Tutorial

Welcome to another data analysis with Python and Pandas tutorial. In this tutorial, we’re going to be talking about smoothing out data by removing noise. There are two main methods to do this. The most popular method used is what is called resampling, though it might take many other names. This is where we have some data that is sampled at a certain rate. For us, we have the Housing Price Index sampled at a one-month rate, but we could sample the HPI every week, every day, every minute, or more, but we could also resample at every year, every 10 years, and so on.
Back to Top