📌  相关文章
📜  如何从现有列创建新的数据框列 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:40.235000             🧑  作者: Mango

代码示例1
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)