Answers for "if in df.columns"

4

check if column exists in dataframe

if 'A' in df.columns:
Posted by: Guest on May-21-2020
2

check if column exists in dataframe python

if 'A' in df:
Posted by: Guest on March-25-2020
0

if in df.columns

import pandas as pd

numbers = {'set_of_numbers': [1,2,3,4,5,6,7,8,9,10]}
df = pd.DataFrame(numbers,columns=['set_of_numbers'])

df['equal_or_lower_than_4?'] = df['set_of_numbers'].apply(lambda x: 'True' if x <= 4 else 'False')

print (df)
Posted by: Guest on January-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language