dolphindb里有没有类似np.where这个功能的函数

dolphindb里有没有类似np.where这个功能的函数,目前我实现的方法是这样的:

def np_where(condition, x, y){
    if (condition) return x else return y
}

np_where(false, 1, 2)

请问有内置的函数吗?

阅读 2.1k
1 个回答

DolphinDB中的iif函数可以实现上述的功能,具体示例如下:

iif(true, 1, 2)
推荐问题
logo
101 新手上路
子站问答
访问
宣传栏