返回顶部
首页 > 资讯 > 精选 >如何创建一个新列,其中的值是根据现有列选择的?
  • 144
分享到

如何创建一个新列,其中的值是根据现有列选择的?

2024-02-22 14:02:30 144人浏览 泡泡鱼
摘要

问题内容 如何将 color 列添加到以下数据帧,以便 color='green' 如果 set == 'z',否则 color='red' ? Type Set 1 A

问题内容

如何将 color 列添加到以下数据帧,以便 color='green' 如果 set == 'z',否则 color='red'

Type  Set
1     A    Z
2     B    Z           
3     B    X
4     C    Y


正确答案


如果您只有两个选择,请使用 np.where

df['color'] = np.where(df['set']=='z', 'green', 'red')

例如,

import pandas as pd
import numpy as np

df = pd.dataframe({'type':list('abbc'), 'set':list('zzxy')})
df['color'] = np.where(df['set']=='z', 'green', 'red')
print(df)

产量

set type  color
0   z    a  green
1   z    b  green
2   x    b    red
3   y    c    red

如果您有两个以上的条件,请使用 np.select。例如,如果您希望 color

  • yellow(df['set'] == 'z') & (df['type'] == 'a')
  • 否则 blue(df['set'] == 'z') & (df['type'] == 'b')
  • 否则 purple(df['type'] == 'b')
  • 否则 black

然后使用

df = pd.dataframe({'type':list('abbc'), 'set':list('zzxy')})
conditions = [
    (df['set'] == 'z') & (df['type'] == 'a'),
    (df['set'] == 'z') & (df['type'] == 'b'),
    (df['type'] == 'b')]
choices = ['yellow', 'blue', 'purple']
df['color'] = np.select(conditions, choices, default='black')
print(df)

产生

Set Type   color
0   Z    A  yellow
1   Z    B    blue
2   X    B  purple
3   Y    C   black

以上就是如何创建一个新列,其中的值是根据现有列选择的?的详细内容,更多请关注编程网其它相关文章!

--结束END--

本文标题: 如何创建一个新列,其中的值是根据现有列选择的?

本文链接: https://lsjlt.com/news/567212.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作