Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Challenge: Using iloc[] | Section
Data Manipulation with pandas
Seção 1. Capítulo 10
single

single

bookChallenge: Using iloc[]

Deslize para mostrar o menu

The DataFrame you are working with:

You can also use negative indexing to access rows in the DataFrame. Negative indexing starts from the end of the DataFrame: index -1 points to the last row, -2 to the second to last, and so on.

To access the seventh row (which refers to Latvia), you can use either index 6 or -1.

123456
import pandas countries_data = {'country' : ['Thailand', 'Philippines', 'Monaco', 'Malta', 'Sweden', 'Paraguay', 'Latvia'], 'continent' : ['Asia', 'Asia', 'Europe', 'Europe', 'Europe', 'South America', 'Europe'], 'capital':['Bangkok', 'Manila', 'Monaco', 'Valletta', 'Stockholm', 'Asuncion', 'Riga']} countries = pandas.DataFrame(countries_data) # Accessing to the seventh row using negative indexing print(countries.iloc[-1])
copy

Running the above code will return the row highlighted in the image below:

Tarefa

Swipe to start coding

You are given a DataFrame named audi_cars.

Task Table
  1. Select the entire row (all columns) for the 'Audi A1' model from the year 2017 and store it in audi_A1_2017.
  2. Do the same for the 'Audi A1' model from the year 2016 and store it in audi_A1_2016.
  3. Finally, select the 'Audi A3' model and store it in audi_A3.

Solução

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 10
single

single

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

some-alt