Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

DolphinDB中有类似R语言中的match函数吗?

如果是A序列去match B序列,然后返回index,DolphinDB中有函数可用吗?
就如在R语言中用match函数:

> match(c(1,2,3),c(1,2,9,3))
[1] 1 2 4

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

可以用find函数,例如:

find([1,2,9,3],[1,2,3])

image.png
注意下标从0开始。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...