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

Contenido del Curso

Introduction to pandas [track]

Introduction to pandas [track]

1. Basics
2. Reading and Exploring Data
3. Accessing DataFrame Values
4. Aggregate Functions

Series

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

¿Todo estuvo claro?

Sección 1. Capítulo 2
We're sorry to hear that something went wrong. What happened?
some-alt