Course Content
Advanced Techniques in pandas
Advanced Techniques in pandas
1. Getting Familiar With Indexing and Selecting Data
Extracting Specific Data
Task
Swipe to show code editor
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.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 4
Extracting Specific Data
Task
Swipe to show code editor
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.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 4
Switch to desktop for real-world practiceContinue from where you are using one of the options below