0
0
PandasConceptBeginner · 3 min read

What is Series in pandas: Definition and Usage Explained

Series in pandas is a one-dimensional labeled array that can hold any data type like numbers or text. It is like a column in a spreadsheet with labels called index to identify each value.
⚙️

How It Works

A Series in pandas works like a list or an array but with labels for each item, called an index. Imagine a list of your favorite fruits where each fruit has a name and a position number. The position number is like the index, and the fruit name is the value.

This labeling helps you find and work with data easily, even if the order changes. You can think of it as a single column in a table or spreadsheet where each row has a label to identify it.

Under the hood, a Series stores data and its index together, making it easy to select, filter, or perform calculations on the data.

💻

Example

This example creates a pandas Series with fruit names as values and custom labels as the index.

python
import pandas as pd

fruits = pd.Series(['Apple', 'Banana', 'Cherry'], index=['a', 'b', 'c'])
print(fruits)
Output
a Apple b Banana c Cherry dtype: object
🎯

When to Use

Use a Series when you need to work with a single column of data that has labels. It is perfect for tasks like storing a list of prices, names, or measurements where each item has a unique identifier.

For example, you can use a Series to hold daily temperatures with dates as the index, or stock prices with timestamps. It helps in quick lookups, filtering, and simple calculations.

Key Points

  • A Series is one-dimensional and labeled.
  • It can hold any data type like numbers, text, or dates.
  • Index labels help access data easily.
  • It is the building block for more complex pandas data structures like DataFrames.

Key Takeaways

A pandas Series is a labeled one-dimensional array for data.
Index labels let you access and manipulate data easily.
Series can hold any data type like numbers or text.
It is useful for single-column data with meaningful labels.