Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Pandas for Finance

You're reading from   Mastering Pandas for Finance Master pandas, an open source Python Data Analysis Library, for financial data analysis

Arrow left icon
Product type Paperback
Published in May 2015
Publisher Packt
ISBN-13 9781783985104
Length 298 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Michael Heydt Michael Heydt
Author Profile Icon Michael Heydt
Michael Heydt
Arrow right icon
View More author details
Toc

Table of Contents (11) Chapters Close

Preface 1. Getting Started with pandas Using Wakari.io FREE CHAPTER 2. Introducing the Series and DataFrame 3. Reshaping, Reorganizing, and Aggregating 4. Time-series 5. Time-series Stock Data 6. Trading Using Google Trends 7. Algorithmic Trading 8. Working with Options 9. Portfolios and Risk Index

The basics of the Series and DataFrame objects

Now let's examine using the Series and DataFrame objects, building up an understanding of their capabilities that will assist us in working with financial data.

Creating a Series and accessing elements

A Series can be created by passing a scalar value, a NumPy array, or a Python dictionary/list to the constructor of the Series object. The following command creates a Series from 100 normally distributed random numbers:

In [2]:
   np.random.seed(1)
   s = pd.Series(np.random.randn(100))
   s

Out[2]:
   0     1.624345
   1    -0.611756
   2    -0.528172
   3    -1.072969
           ...   
   96   -0.343854
   97    0.043597
   98   -0.620001
   99    0.698032
   Length: 100, dtype: float64

Individual elements of a Series can be retrieved using the [] operator of the Series object. The item with the index label 2 can be retrieved using the following code:

In [3]:
   s[2]

Out[3]:
   -0.528171752263

Multiple values can be retrieved using an array...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime