
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Select Rows from a Pandas DataFrame Using a List of Values
To select the rows from a Pandas DataFrame based on input values, we can use the isin() method.
Steps
Create a two-dimensional, size-mutable, potentially heterogeneous tabular data, df.
Print the input DataFrame.
Create a list of values for selection of rows.
Print the selected rows with the given values.
Next, print the rows that were not selected.
Example
import pandas as pd df = pd.DataFrame( { "x": [5, 2, 1, 9], "y": [4, 1, 5, 10], "z": [4, 1, 5, 0] } ) print "Input DataFrame:
", df values = [1, 2] print "Selected Rows:
", df[df['x'].isin(values)] print "Uselected Rows:
", df[~df['x'].isin(values)]
Output
Input DataFrame: x y z 0 5 4 4 1 2 1 1 2 1 5 5 3 9 10 0 Selected Rows: x y z 1 2 1 1 2 1 5 5 Unselected Rows: x y z 0 5 4 4 3 9 10 0
Advertisements