Rolling calculations on Time Series data in Pandas
Moving averages are particularly useful in finance and business domain where time series data is used to calculate important insights. We will attempt to understand usage of Pandas rolling function (pandas.DataFrame.rolling) by using it on an IPL batsman’s performance over the course of 10 years of international cricket.
Given below are the b...
SonarLint configuration for VS Code
SonarLint is an IDE extension that helps you detect and fix quality issues as you write code. Like a spell checker, SonarLint squiggles flaws so that they can be fixed before committing code.
List of steps to install and configure sonarlint in VS Code:
Make sure you have the latest version of Microsoft Visual Studio Code (VS Code) installed...