Pandas Series

Learn Series - the one-dimensional data structure of Pandas.

We'll cover the following

What is Series in Pandas?

Series is a one-dimensional array with axis labels. There are multiple ways to create an array. Before exploring the examples, we’ll need to import Pandas.

import pandas as pd

When importing a Python library, the common practice is to assign an alias. The pd is used for Pandas, but you can assign anything you want. If you assign a different alias, make sure to replace pd in the examples with the one you used.

Get hands-on with 1200+ tech skills courses.