Book Image

Learning pandas - Second Edition

By : Michael Heydt
Book Image

Learning pandas - Second Edition

By: Michael Heydt

Overview of this book

You will learn how to use pandas to perform data analysis in Python. You will start with an overview of data analysis and iteratively progress from modeling data, to accessing data from remote sources, performing numeric and statistical analysis, through indexing and performing aggregate analysis, and finally to visualizing statistical data and applying pandas to finance. With the knowledge you gain from this book, you will quickly learn pandas and how it can empower you in the exciting world of data manipulation, analysis and science.
Table of Contents (16 chapters)

Adding columns through enlargement

A column can be added using the .loc[] property and a slice. The following demonstrates this by adding a new column to a subset of sp500 named PER with all values initialized to 0.

A Series with existing data can also be added in this manner. The following adds the PER column with random data from a series. Since this uses alignment, it is necessary to use the same index as the target data frame.