Answers for "how check dataframe columns for specific values"

0

get value of a pd for specific values in column

df.loc[df['column_name'].isin(some_values)]
Posted by: Guest on April-23-2020
0

finding the rows in a dataframe where column contains any of these values python

import pandas as pd

data = {'Month': ['January','February','March','April','May','June','July','August','September','October','November','December'],
        'Days in Month': [31,28,31,30,31,30,31,31,30,31,30,31]
        }

df = pd.DataFrame(data, columns = ['Month', 'Days in Month'])

contain_values = df[df['Month'].str.contains('Ju')]
print (contain_values)
Posted by: Guest on October-27-2020

Code answers related to "how check dataframe columns for specific values"

Python Answers by Framework

Browse Popular Code Answers by Language