Answers for "check values of a column based on values of another column pandas"

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
0

fill a column based on values in another column pandas

df['Normalized'] = np.where(df['Currency'] == '$', df['Budget'] * 0.78125, df['Budget'])
Posted by: Guest on November-22-2021

Code answers related to "check values of a column based on values of another column pandas"

Python Answers by Framework

Browse Popular Code Answers by Language