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

Splitting and scaling the data

Before feeding the dataset into our model, we have to prepare it in a proper format. The following steps guide you through the process:

  1. Split the dataset into independent and target variables:
In [ ]:    feature_columns= df.columns[:-1]    features = df.loc[:, feature_columns]    target = df.loc[:, 'default payment next month']

Our target values in the last column of the dataset are assigned to the target variable, while remaining values are feature values and are assigned to the features variable.

  1. Split the dataset into training data and testing data:
In [ ]:    from sklearn.model_selection import train_test_split     train_features, test_features, train_target, test_target = \ train_test_split(features, target, test_size=0.20, ...
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