Answers for "specifying values in a column from two diffrent columns in a pandas dataframe"

2

select 2 cols from dataframe python pandas

# Convert the dictionary into DataFrame 
df = pd.DataFrame(data)
  
# select two columns
df[['Name', 'Qualification']]
Posted by: Guest on May-10-2021
0

pandas set one column equal to another

In [300]:
df.loc[df['colA'] == 'a', 'colC'] = df['colB']
df['colC'] = df['colC'].fillna(0)
df

Out[300]:
   id colA  colB  colC
0   0    a    13    13
1   1    a    52    52
2   2    b    16     0
3   3    a    34    34
4   4    b   946     0
Posted by: Guest on October-27-2021

Code answers related to "specifying values in a column from two diffrent columns in a pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language