Conteúdo do Curso
Advanced Techniques in pandas
Advanced Techniques in pandas
1. Getting Familiar With Indexing and Selecting Data
Extracting Specific Data
Tarefa
Swipe to start coding
Your task here is to practice. You need to extract specific data on cars. Follow the algorithm:
- Using the
.between()
method create the condition to extract data on cars where'Price'
is between15 000
(inclusive) and20 000
(exclusive). - Using the
.between()
method create the condition to extract data on cars where'Year'
is between2015
(exclusive) and2020
(exclusive). - Using the
.isin()
method create the condition to extract data on such values from'Fuel_type'
column:'Plug-in Hybrid'
and'Hybrid'
(the values are stored in the variablefuel_types
). - Unite three conditions using two and statements.
Solução
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 4
Extracting Specific Data
Tarefa
Swipe to start coding
Your task here is to practice. You need to extract specific data on cars. Follow the algorithm:
- Using the
.between()
method create the condition to extract data on cars where'Price'
is between15 000
(inclusive) and20 000
(exclusive). - Using the
.between()
method create the condition to extract data on cars where'Year'
is between2015
(exclusive) and2020
(exclusive). - Using the
.isin()
method create the condition to extract data on such values from'Fuel_type'
column:'Plug-in Hybrid'
and'Hybrid'
(the values are stored in the variablefuel_types
). - Unite three conditions using two and statements.
Solução
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 4