Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Series | Basics
Introduction to pandas [track]

bookSeries

The simplest pandas object is Series - one-dimensional ndarray (numpy array) with axis labels.

To create a series in pandas, use pd.Series() method (capital S), passing list/array of values as the parameter.

123456
# Importing library import pandas as pd # Creating pandas series ser = pd.Series([1000, 2500, 1700]) print(ser)
copy

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 2

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Awesome!

Completion rate improved to 3.33

bookSeries

Swipe to show menu

The simplest pandas object is Series - one-dimensional ndarray (numpy array) with axis labels.

To create a series in pandas, use pd.Series() method (capital S), passing list/array of values as the parameter.

123456
# Importing library import pandas as pd # Creating pandas series ser = pd.Series([1000, 2500, 1700]) print(ser)
copy

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 2
some-alt