Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Extract Specific Data | Extract Data
Advanced Techniques in pandas

Extract Specific DataExtract Specific Data

Task

Your task here is to practice. You need to extract specific data on cars. Follow the algorithm:

  1. Using the.between() function create the condition to extract data on cars where 'Price' is between 15 000(inclusive) and 20 000(exclusive).
  2. Using the .between() function create the condition to extract data on cars where 'Year' is between 2015(exclusive) and 2020(exclusive).
  3. 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 variable fuel_types).
  4. Unite three conditions using two and statements.

Everything was clear?

Section 3. Chapter 4
toggle bottom row
course content

Course Content

Advanced Techniques in pandas

Extract Specific DataExtract Specific Data

Task

Your task here is to practice. You need to extract specific data on cars. Follow the algorithm:

  1. Using the.between() function create the condition to extract data on cars where 'Price' is between 15 000(inclusive) and 20 000(exclusive).
  2. Using the .between() function create the condition to extract data on cars where 'Year' is between 2015(exclusive) and 2020(exclusive).
  3. 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 variable fuel_types).
  4. Unite three conditions using two and statements.

Everything was clear?

Section 3. Chapter 4
toggle bottom row
some-alt