Generalized Linear Model (Examples)
This article is a companion article to my another post Generalized Linear Model. In this article, I will implement some of the learning algorithms in Generalized Linear Model. To be more specific, I will do some examples on linear regression and logistic regression. With some effort, google search gives me some very good example data sets to work with. The datasets collected by Larry Winner is one of the excellent sets, which will be used in the article.
The implementations here use Python. Required 3rd party libraries are:
- Requests: use to get online data
- Matplotlib: use for plotting
- NumPy: use for matrix calculation