Linear regression is one of the most popular and best understood algorithms in the machine learning landscape. Since regression tasks belong to the most common machine learning problems in supervised learning, every Machine Learning Engineer should have a thorough understanding of how it works. This blogpost covers how the linear regression algorithm works, where it is... Continue Reading →
Introduction to Pandas
In this blogpost we will go through an introduction of the basic commands of Pandas. If you are using the Python stack for machine learning, then there is probably no way around this useful tool. Pandas is one of the most popular open source python libraries for data analysis that provides high performance and easy-to-use data structures.... Continue Reading →
Time Series Forecasting
Time Series forecasting is a very important area of machine learning, because there are a lot of prediction tasks that involve a time component. Examples are the prediction of a stocks closing price or forecasting a companies sales. After reading this post you will know about the basic concepts of Time Series Forecasting and how... Continue Reading →
Predicting Housing Prices with Linear Regression
In this Post I will go through the workflow of a full machine learning project with the Ames housing dataset, using Linear Regression. This post was initially created with Jupyter Notebook. Unfortunately with WordPress, it is only possible to display a Jupyter Notebook in a small window, like you can see below. Therefore I would recommend... Continue Reading →