Skip to Content
Mastering Python for Finance - Second Edition
book

Mastering Python for Finance - Second Edition

by James Ma Weiming
April 2019
Intermediate to advanced
426 pages
11h 13m
English
Packt Publishing
Content preview from Mastering Python for Finance - Second Edition

Writing the linear regression model

We will create a class for using a linear regression model to fit and predict values. This class also serves as a base class for implementing other models in this chapter. The following steps illustrates this process.

  1. Declare a class named LinearRegressionModel as follows:
from sklearn.linear_model import LinearRegressionclass LinearRegressionModel(object):    def __init__(self):        self.df_result = pd.DataFrame(columns=['Actual', 'Predicted'])    def get_model(self):        return LinearRegression(fit_intercept=False)    def get_prices_since(self, df, date_since, lookback):        index = df.index.get_loc(date_since)        return df.iloc[index-lookback:index]        

In the constructor of our new class, we declare a pandas DataFrame called ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python for Finance - Second Edition

Python for Finance - Second Edition

Yuxing Yan
Python for Finance

Python for Finance

Yves Hilpisch

Publisher Resources

ISBN: 9781789346466Supplemental Content