Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Accessing Rows and Columns | Accessing DataFrame Values
Introduction to pandas [track]
course content

Contenu du cours

Introduction to pandas [track]

Introduction to pandas [track]

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

book
Accessing Rows and Columns

If you need to get particular rows and columns, you can easily combine both methods learned previously, in any order. That is, you can get certain row, and then choose the columns you need, or vice versa. Look at the example below, and compare both outputs.

12345678
# Importing library import pandas as pd # Reading csv file df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/67798cef-5e7c-4fbc-af7d-ae96b4443c0a/audi.csv') # Get the 'mileage' column value of the first row print(df[0:1]['mileage']) print(df['mileage'][0])
copy

Remember that you need to use slicing even for getting a single row.

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 3. Chapitre 5
Nous sommes désolés de vous informer que quelque chose s'est mal passé. Qu'est-il arrivé ?
some-alt