Book Image

Mastering Pandas for Finance

By : Michael Heydt
Book Image

Mastering Pandas for Finance

By: Michael Heydt

Overview of this book

Table of Contents (16 chapters)
Mastering pandas for Finance
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Notebook setup


To utilize the examples in this chapter, we will need to include the following imports and settings in either your IPython or IPython Notebook environment:

In [1]:
   import pandas as pd
   import numpy as np

   pd.set_option('display.notebook_repr_html', False)
   pd.set_option('display.max_columns', 8)
   pd.set_option('display.max_rows', 8)