Answers for "how to create new column by getting the row values of specific column of a dataframe"

0

how to assign a new value in a column in pandas dataframe

df = df.assign(industry='yyy')
Posted by: Guest on September-21-2020
0

How to Create new dataframe columns from existing column

new_df = df.filter(like='n_') 
           .replace(0., np.inf) 
           .apply(lambda x: sorted(x), axis=1, result_type='expand') 
           .replace(np.inf, 0.0)

new_df.columns = ['new_1', 'new_2', 'new_3']

out = pd.concat([df, new_df], axis=1)
Posted by: Guest on September-22-2021

Code answers related to "how to create new column by getting the row values of specific column of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language