Course Content
Advanced Techniques in pandas
1. Get Familiar With Indexing and Selecting Data
2. Dealing With Conditions
Advanced Techniques in pandas
Challenge
Task
Your task here is to practice. You need to extract specific data on cars. Follow the algorithm:
- Using the
.between()
function create the condition to extract data on cars where'Price'
is between15 000
(inclusive) and20 000
(exclusive). - Using the
.between()
function create the condition to extract data on cars where'Year'
is between2015
(exclusive) and2020
(exclusive). - Using the
.isin()
function 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.
Everything was clear?
Section 3. Chapter 4