Answers for "pandas move column to another dataframe"

5

how to move a column in pandas dataframe

df = df.reindex(columns=column_names)
Posted by: Guest on August-20-2020
2

change column value based on another column pandas

# Changes the 'is_electric' column based on value in the 'type' column
# If the 'type' column == 'electric' then the 'is_electric' becomes 'YES'
df['is_electric']= df['type'].apply(lambda x: 'YES' if (x == 'electric') else 'NO')
Posted by: Guest on November-19-2020

Code answers related to "pandas move column to another dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language