Linear Regression from Scratch with Python

Among the variety of models available in Machine Learning, most people will agree that Linear Regression is the most basic and simple one. However, this model incorporates almost all of the basic concepts that are required to understand Machine Learning modelling.

In this example, I will show how it is relatively simple to implement an univariate (one input, one output) linear regression model.

Read More

Using Python for Process Optimization

Python logo

Hello!

In the last post I demonstrated how to use MS Excel software and its Solver tool to find the optimal operating point in a process.

In this post, we will use the free Python programming language to solve the same problem. The use of Python in the academic and industrial environment has grown immensely, mainly due to the continuous development of new tools that increase its potential of application in several areas.

Read More