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

Kursusindhold

Introduction to pandas [track]

Introduction to pandas [track]

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

book
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

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 2

Spørg AI

expand
ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

course content

Kursusindhold

Introduction to pandas [track]

Introduction to pandas [track]

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

book
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

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 2
Vi beklager, at noget gik galt. Hvad skete der?
some-alt